QuEasy PHP Framework - Database
QuEasy DB is a set of database access classes for CRUD operations.
Some of the most usual queries can be built automatically (like SELECT
by unique field value/values, UPDATE
, INSERT
and DELETE
).
More complex queries can be defined in database and/or tables config.
The main goal is to separate SQL
queries out of PHP
code and provide an easy way for CRUD operations.
- QuEasy DB extends
PDO
class, so any project which usesPDO
can be seamlessly moved to use QuEasy DB. - Simple CRUD database operations in just one PHP code row.
- Separating SQL queries from PHP code.
- PHP version 5.3 or higher
composer require v-dem/queasy-db
It will also install v-dem/queasy-helper
.
- You can use
setLogger()
method which acceptsPsr\Log\LoggerInterface
implementation to log all queries, by defaultPsr\Log\NullLogger
is used. - By default error mode is set to
PDO::ERRMODE_EXCEPTION
(as in PHP8) if another mode is not set in$options
.
- For MySQL Server need to set option
PDO::MYSQL_ATTR_INIT_COMMAND
toSET GLOBAL SQL_MODE=ANSI_QUOTES
or run same query before calling DB-specific methods. - For MSSQL Server need to run
SET QUOTED_IDENTIFIER ON
orSET ANSI_DEFAULTS ON
query before calling DB-specific methods.
Sample:
$db = new queasy\db\Db(
[
'dsn' => 'pgsql:host=localhost;dbname=test',
'user' => 'test_user',
'password' => 'test_password',
'options' => [
...options...
]
]
);
Or:
$db = new queasy\db\Db(
[
'connection' => [
'dsn' => 'pgsql:host=localhost;dbname=test',
'user' => 'test_user',
'password' => 'test_password',
'options' => [
...options...
]
]
]
);
Or PDO-way:
$db = new queasy\db\Db('pgsql:host=localhost;dbname=test', 'test_user', 'test_password', $options);
- Fourth argument (
$options
) is optional, will be passed toPDO::prepare()
$users = $db->users->all();
foreach ($db->users as $user) {
// Do something
}
$user = $db->users->id[$userId];
It's possible to use select()
method to pass PDO options; select()
returns PDOStatement instance:
$users = $db->users->id->select($userId, $options);
$users = $db->users->id[[$userId1, $userId2]];
$db->users[] = [
'email' => '[email protected]',
'password_hash' => sha1('myverystrongpassword')
];
$db->users[] = [
'[email protected]',
sha1('myverystrongpassword')
];
Insert many records into users
table using associative array (it will generate single INSERT
statement)
$db->users[] = [
[
'email' => '[email protected]',
'password_hash' => sha1('myverystrongpassword')
], [
'email' => '[email protected]',
'password_hash' => sha1('herverystrongpassword')
]
];
$db->users[] = [
[
'[email protected]',
sha1('myverystrongpassword')
], [
'[email protected]',
sha1('herverystrongpassword')
]
];
$db->users[] = [
[
'email',
'password_hash'
], [
[
'[email protected]',
sha1('myverystrongpassword')
], [
'[email protected]',
sha1('herverystrongpassword')
]
]
];
Also it's possible to use insert()
method (in the same way as above) when need to pass PDO options; returns last insert id for single insert and number of inserted rows for multiple inserts:
$userId = $db->users->insert([
'email' => '[email protected]',
'password_hash' => sha1('myverystrongpassword')
], $options);
$insertedRowsCount = $db->users->insert([
[
'email' => '[email protected]',
'password_hash' => sha1('myverystrongpassword')
], [
'email' => '[email protected]',
'password_hash' => sha1('herverystrongpassword')
]
], $options);
- Second argument (
$options
) is optional, will be passed toPDO::prepare()
$newUserId = $db->id();
$db->users->id[$userId] = [
'password_hash' => sha1('mynewverystrongpassword')
]
$updatedRowsCount = $db->users->id->update($userId, [
'password_hash' => sha1('mynewverystrongpassword')
], $options);
- Third argument (
$options
) is optional, will be passed toPDO::prepare()
$db->users->id[[$userId1, $userId2]] = [
'is_blocked' => true
]
unset($db->users->id[$userId]);
unset($db->users->id[[$userId1, $userId2]]);
$deletedRowsCount = $db->users->id->delete([[$userId1, $userId2]], $options);
- Second argument (
$options
) is optional, will be passed toPDO::prepare()
$usersCount = count($db->users);
$db->trans(function() use($db) {
// Run queries inside a transaction, for example:
$db->users[] = [
'[email protected]',
sha1('myverystrongpassword')
];
});
- On exception transaction is rolled back and exception re-thrown to outer code.
$users = $db->run('
SELECT *
FROM "users"
WHERE "name" LIKE concat(\'%\', :searchName, \'%\')',
[
':searchName' => 'John'
],
$options
)->fetchAll();
- Third argument (
$options
) is optional, will be passed toPDO::prepare()
This feature can help keep code cleaner and place SQL code outside PHP, somewhere in config files.
$db = new queasy\db\Db(
[
'connection' => [
'dsn' => 'pgsql:host=localhost;dbname=test',
'user' => 'test_user',
'password' => 'test_password'
],
'queries' => [
'searchUsersByName' => [
'sql' => '
SELECT *
FROM "users"
WHERE "name" LIKE concat(\'%\', :searchName, \'%\')',
'returns' => Db::RETURN_ALL
]
]
]
);
$users = $db->searchUsersByName([
'searchName' => 'John'
]);
- Possible values for
returns
option areDb::RETURN_STATEMENT
(default, returnsPDOStatement
instance),Db::RETURN_ONE
,Db::RETURN_ALL
,Db::RETURN_VALUE
Also it is possible to group predefined queries by tables:
$db = new queasy\db\Db(
[
'connection' => [
'dsn' => 'pgsql:host=localhost;dbname=test',
'user' => 'test_user',
'password' => 'test_password'
],
'tables' => [
'users' => [
'searchByName' => [
'sql' => '
SELECT *
FROM "user_roles"
WHERE "name" LIKE concat(\'%\', :searchName, \'%\')',
'returns' => Db::RETURN_ALL
]
]
]
]
);
$users = $db->users->searchByName([
'searchName' => 'John'
]);
config.php:
return [
'db' => [
'connection' => [
'dsn' => 'pgsql:host=localhost;dbname=test',
'user' => 'test_user',
'password' => 'test_password'
],
'tables' => [
'users' => [
'searchByName' => [
'sql' => '
SELECT *
FROM "users"
WHERE "name" LIKE concat(\'%\', :searchName, \'%\')',
'returns' => Db::RETURN_ALL
]
]
]
],
'logger' => [
[
'class' => queasy\log\ConsoleLogger::class,
'minLevel' => Psr\Log\LogLevel::DEBUG
]
]
];
Initializing:
$config = new queasy\config\Config('config.php'); // Can be also INI, JSON or XML
$logger = new queasy\log\Logger($config->logger);
$db = new queasy\db\Db($config->db);
$db->setLogger($logger);
$users = $db->users->searchByName([
'searchName' => 'John'
]);
- All queries will be logged with
Psr\Log\LogLevel::DEBUG
level. Also it's possible to use any other logger class compatible with PSR-3.