I want to connect with windows sql azure database using PEAR MDB2 sqlsrv driver.
I can able to connect non federated database using this
sqlsrv://username@server:[email protected]:1433/mydatabase
but with federated database I need to set
"MultipleActiveResultSets" => false
this also with connection string..
How can I pass this extra param.. Please help me
sqlsrv://username@server:[email protected]:1433/mydatabase?options="MultipleActiveResultSets=false"
is this correct way to send extra values?
MDB2 DSN documentation states that:
So the options should be passed as
Unfortunately looking at MDB2 sqlsrv.php code, the
_doConnect()
function doesn't appear to take any other options except for host, username, password and database. So it may not be possible to disable MARS when connecting.For additional information about the 2.5 beta version of MDB2 see this answer.