1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

MySQL 4.x support, functionaly similar to MySQL bar transaction support

git-svn-id: file:///svn/phpbb/trunk@1276 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-11-04 15:26:33 +00:00
parent fc38cd7257
commit 8504825bb4
2 changed files with 361 additions and 0 deletions

View File

@@ -26,6 +26,10 @@ switch($dbms)
include($phpbb_root_path . 'db/mysql.'.$phpEx);
break;
case 'mysql4':
include($phpbb_root_path . 'db/mysql4.'.$phpEx);
break;
case 'postgres':
include($phpbb_root_path . 'db/postgres7.'.$phpEx);
break;