Stars: 281
Forks: 110
Pull Requests: 27
Issues: 81
Watchers: 26
Last Updated: 2022-06-09 01:38:33
useful query builder class that works with PHP PDO class for simple access your data.
License: MIT License
Languages: PHP
_____ _____ ____
| __ \| __ \ / __ \
| |__) | | | | | | |_ __
| ___/| | | | | | \ \/ /
| | | |__| | |__| |> <
|_| |_____/ \____//_/\_\
Fast, efficient and useful Query Builder and PDO Class for #PHP
composer.json file:
{
"require": {
"izniburak/pdox": "^1"
}
}
after run the install command.
$ composer install
OR run the following command directly.
$ composer require izniburak/pdox
require 'vendor/autoload.php';
$config = [
'host' => 'localhost',
'driver' => 'mysql',
'database' => 'test',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
'prefix' => ''
];
$db = new \Buki\Pdox($config);
$records = $db->table('users')
->select('id, name, surname, age')
->where('age', '>', 18)
->orderBy('id', 'desc')
->limit(20)
->getAll();
var_dump($records);
Documentation page: PDOx Docs