mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Updated for improved use with ODBC setups + introduced a re-install feature ... the schema updates _only_ remove foreign key and drop table clauses
git-svn-id: file:///svn/phpbb/trunk@1492 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
84a2b7dad4
commit
8d24323734
1 changed files with 6 additions and 2 deletions
|
@ -38,12 +38,16 @@ switch($dbms)
|
||||||
include($phpbb_root_path . 'db/mssql.'.$phpEx);
|
include($phpbb_root_path . 'db/mssql.'.$phpEx);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'oracle':
|
||||||
|
include($phpbb_root_path . 'db/oracle.'.$phpEx);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'msaccess':
|
case 'msaccess':
|
||||||
include($phpbb_root_path . 'db/msaccess.'.$phpEx);
|
include($phpbb_root_path . 'db/msaccess.'.$phpEx);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'oracle':
|
case 'mssql-odbc':
|
||||||
include($phpbb_root_path . 'db/oracle.'.$phpEx);
|
include($phpbb_root_path . 'db/mssql-odbc.'.$phpEx);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue