diff options
-rw-r--r-- | phpBB/includes/db.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/includes/db.php b/phpBB/includes/db.php index 2fd4bab7fb..70f20c33b6 100644 --- a/phpBB/includes/db.php +++ b/phpBB/includes/db.php @@ -38,12 +38,16 @@ switch($dbms) include($phpbb_root_path . 'db/mssql.'.$phpEx); break; + case 'oracle': + include($phpbb_root_path . 'db/oracle.'.$phpEx); + break; + case 'msaccess': include($phpbb_root_path . 'db/msaccess.'.$phpEx); break; - case 'oracle': - include($phpbb_root_path . 'db/oracle.'.$phpEx); + case 'mssql-odbc': + include($phpbb_root_path . 'db/mssql-odbc.'.$phpEx); break; } |