summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/sqlsrv/sqlsrv_driver.php
diff options
context:
space:
mode:
authorAlex Bilbie <alex.bilbie@gmail.com>2011-03-10 20:36:58 +0100
committerAlex Bilbie <alex.bilbie@gmail.com>2011-03-10 20:36:58 +0100
commit079069c2fa70b142fb4313f12f1fdf3f11713ff5 (patch)
treee1c8bf27678728164d076ed9bf262dd8c30a4f62 /system/database/drivers/sqlsrv/sqlsrv_driver.php
parent7e5127173c61752d827fc0c5bed1166ce040fabf (diff)
Think I've finished converting mssql commands to sqlsrv where appropriate
Diffstat (limited to 'system/database/drivers/sqlsrv/sqlsrv_driver.php')
-rw-r--r--system/database/drivers/sqlsrv/sqlsrv_driver.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/system/database/drivers/sqlsrv/sqlsrv_driver.php b/system/database/drivers/sqlsrv/sqlsrv_driver.php
index d64e98108..53d974837 100644
--- a/system/database/drivers/sqlsrv/sqlsrv_driver.php
+++ b/system/database/drivers/sqlsrv/sqlsrv_driver.php
@@ -107,9 +107,7 @@ class CI_DB_mssql_driver extends CI_DB {
*/
function db_select()
{
- // Note: The brackets are required in the event that the DB name
- // contains reserved characters
- return @mssql_select_db('['.$this->database.']', $this->conn_id);
+ // not implemented in sqlsrv
}
// --------------------------------------------------------------------