1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 21:58:10 +02:00

removed PHP < 5.4 stuff

This commit is contained in:
David Grudl
2014-06-02 16:50:01 +02:00
parent 96daa02525
commit 3e010c0f4d
8 changed files with 5 additions and 482 deletions

View File

@@ -103,7 +103,7 @@ echo '<p>Connecting to Sqlite via PDO: ';
try {
dibi::connect(array(
'driver' => 'pdo',
'dsn' => 'sqlite2::memory:',
'dsn' => 'sqlite::memory:',
));
echo 'OK';
} catch (DibiException $e) {