aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db.php')
-rw-r--r--phpBB/db.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/db.php b/phpBB/db.php
index 0571735aa8..874f4a8ac4 100644
--- a/phpBB/db.php
+++ b/phpBB/db.php
@@ -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"]);
}
+
?>