Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to connect to MS SQL database in Doctrine 2.0, but I get this error all the time: Fatal error: Uncaught exception 'PDOException' with message 'could not find driver'.

I have already found that I need to install PDO SqlSrv extension to my local PHP (using Wamp), so I have done it (copied dlls into ext folder, edited php.ini, restarted), but the problem is still the same. I am trying to use some drivers I have downloaded, name of the file is SQLSRV20.EXE. In Doctrine config I have this as a driver: pdo_sqlsrv.

Has anybody same experience or is here just somebody who knows what have I to do to make it work?

share|improve this question
Look into the phpinfo() it lists the PDO driver actually installed. Is it in that list? – hakre Jun 22 '11 at 19:08
Right, thats another thing I could do before. Now I see it is not there, but I dont understand why :/ PDO drivers mysql, odbc, sqlite – James Jun 22 '11 at 19:09
Okay infact this is not bad news. It just means not installed. What have you edited in the php.ini? And where did you obtain the .dll file from? – hakre Jun 22 '11 at 19:15
This is what I added to php.ini: extension=php_pdo.dll extension=php_pdo_sqlsrv.dll extension=php_sqlsrv.dll The php_pdo.dll is downloaded from dlldll.com, the sqlsrv DLLs are downloaded from microsoft.com. Originals names were a little bit different, I have renamed it in my trying to make it work. – James Jun 22 '11 at 19:19
Restore the original filenames. Obtain php_pdo.dll from php.net, it should be part of you PHP. Where did you obtain PHP from? Which version do you use? – hakre Jun 22 '11 at 19:23
show 10 more comments

1 Answer

up vote 1 down vote accepted

I had a heck of a job trying to get PDO driver's working - it turned out i just needed to reboot my system.

..this shouldn't have been necessary but it did work. So if you are sure you have taken all the steps necessary to enable the drivers and it's still not working, give the reboot a shot.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.