izniburak / pdox

useful query builder class that works with PHP PDO class for simple access your data.
http://burakdemirtas.org/pdox-kullanisli-pdo-sinifi-php/
MIT License
299 stars 105 forks source link

Does PDOx support SQLite3? #83

Closed shaobingme closed 3 years ago

shaobingme commented 4 years ago

please guide, thanks. how to connect with sqlite database? thanks.

izniburak commented 4 years ago

Hi @shaobingme , You must specify driver and database into PDOx config. Driver must be sqlite, and Database must be your Path of SQLite Database File. For example:

$config = [
    'driver'    => 'sqlite',
    'database'  => 'test.sqlite', // full path
    // and other settings...
];

// start PDOx
$db = new \Buki\Pdox($config);

Could you try like that?