Welcome Guest, Not a member yet? Register   Sign In
PDO with MSSQL
#1

[eluser]ci_user[/eluser]
In case you need to use PDO with MSSQL you will need to hack the pdo_driver:

Code:
this->hostname .= ";dbname=".$this->database;

Needs to be:

Code:
if (strstr($this->hostname, 'sqlsrv') == TRUE){
   $this->hostname;
} else {
   $this->hostname .= ";dbname=".$this->database;
}

Hope this saves someone a headache!




Theme © iAndrew 2016 - Forum software by © MyBB