1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 13:47:33 +02:00

* new MS SQL driver

* removed constant DIBI
This commit is contained in:
David Grudl
2007-05-13 18:32:03 +00:00
parent f766827219
commit 7452065de0
15 changed files with 281 additions and 19 deletions

View File

@@ -49,6 +49,13 @@ try {
'dsn' => 'sqlite2::memory:',
));
// connects to MS SQL
dibi::connect(array(
'driver' => 'mssql',
'host' => 'localhost',
'username' => 'root',
'password' => 'xxx',
));
} catch (DibiException $e) {