diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-04 15:26:33 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-11-04 15:26:33 +0000 |
| commit | 8504825bb4bee7019593a081049e885fb6cafaaf (patch) | |
| tree | 4e56684535a43c03bf0251739c74515852bf8544 /phpBB/includes | |
| parent | fc38cd72572bc26f3572b358ff63a0914ed8ad6f (diff) | |
| download | forums-8504825bb4bee7019593a081049e885fb6cafaaf.tar forums-8504825bb4bee7019593a081049e885fb6cafaaf.tar.gz forums-8504825bb4bee7019593a081049e885fb6cafaaf.tar.bz2 forums-8504825bb4bee7019593a081049e885fb6cafaaf.tar.xz forums-8504825bb4bee7019593a081049e885fb6cafaaf.zip | |
MySQL 4.x support, functionaly similar to MySQL bar transaction support
git-svn-id: file:///svn/phpbb/trunk@1276 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/db.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/db.php b/phpBB/includes/db.php index 1e885d56fa..2d1a7be6b7 100644 --- a/phpBB/includes/db.php +++ b/phpBB/includes/db.php @@ -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; |
