From 8504825bb4bee7019593a081049e885fb6cafaaf Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 4 Nov 2001 15:26:33 +0000 Subject: MySQL 4.x support, functionaly similar to MySQL bar transaction support git-svn-id: file:///svn/phpbb/trunk@1276 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/db.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'phpBB/includes/db.php') 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; -- cgit v1.2.1