1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-01 11:50:15 +02:00

removed MsSqlDriver (is not available in PHP7)

This commit is contained in:
David Grudl
2018-05-09 11:43:09 +02:00
parent 030554e1ae
commit bea524a621
6 changed files with 0 additions and 584 deletions

View File

@@ -106,22 +106,6 @@ try {
echo "</p>\n";
// connects to MS SQL
echo '<p>Connecting to MS SQL: ';
try {
dibi::connect([
'driver' => 'mssql',
'host' => 'localhost',
'username' => 'root',
'password' => 'xxx',
]);
echo 'OK';
} catch (Dibi\Exception $e) {
echo get_class($e), ': ', $e->getMessage(), "\n";
}
echo "</p>\n";
// connects to SQLSRV
echo '<p>Connecting to Microsoft SQL Server: ';
try {