mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
update database model
This commit is contained in:
parent
ce1cabc3c7
commit
fa47610f65
1 changed files with 8 additions and 4 deletions
|
|
@ -6,17 +6,18 @@ namespace Yggverse\Yoda\Model;
|
|||
|
||||
class Database
|
||||
{
|
||||
public \PDO $_database;
|
||||
private \PDO $_database;
|
||||
|
||||
public function __construct(
|
||||
string $database,
|
||||
string $filename,
|
||||
?string $username = null,
|
||||
?string $password = null
|
||||
) {
|
||||
// Init database
|
||||
$this->_database = new \PDO(
|
||||
sprintf(
|
||||
'sqlite:%s',
|
||||
$database
|
||||
$filename
|
||||
),
|
||||
$username,
|
||||
$password
|
||||
|
|
@ -71,7 +72,10 @@ class Database
|
|||
{
|
||||
$query = $this->_database->prepare(
|
||||
sprintf(
|
||||
'SELECT * FROM `history` WHERE `url` LIKE :search OR `title` LIKE :search ORDER BY `id` DESC LIMIT %d,%d',
|
||||
'SELECT * FROM `history`
|
||||
WHERE `url` LIKE :search OR `title` LIKE :search
|
||||
ORDER BY `id` DESC
|
||||
LIMIT %d,%d',
|
||||
$start,
|
||||
$limit
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue