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

[ticket/10809] Remove MSSQL support

PHPBB3-10809
This commit is contained in:
Jakub Senko
2016-03-29 21:21:35 +02:00
parent 3d4660a703
commit c64b8102b7
19 changed files with 4 additions and 633 deletions

View File

@@ -25,7 +25,7 @@ class factory
*/
public function get($db_driver, $return_statements = false)
{
if ($db_driver instanceof \phpbb\db\driver\mssql || $db_driver instanceof \phpbb\db\driver\mssql_base)
if ($db_driver instanceof \phpbb\db\driver\mssql_base)
{
return new \phpbb\db\tools\mssql($db_driver, $return_statements);
}

View File

@@ -110,7 +110,6 @@ class mssql extends tools
// Determine mapping database type
switch ($this->db->get_sql_layer())
{
case 'mssql':
case 'mssql_odbc':
$this->sql_layer = 'mssql';
break;