mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
update database model
This commit is contained in:
parent
ce1cabc3c7
commit
fa47610f65
@ -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…
x
Reference in New Issue
Block a user