1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-15 05:14:28 +02:00

Updated for odbc

git-svn-id: file:///svn/phpbb/trunk@61 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-02-25 15:11:25 +00:00
parent fb54a622ff
commit fa9d60b536

View File

@ -32,6 +32,9 @@ switch($dbms)
case 'mssql':
include('db/mssql.'.$phpEx);
break;
case 'odbc':
include('db/odbc.'.$phpEx);
break;
case 'oracle':
include('db/oracle.'.$phpEx);
break;
@ -44,4 +47,5 @@ if(!$db)
$db_error = $db->sql_error();
error_die($db, SQL_CONNECT, $db_error["message"]);
}
?>