|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-02-16 13:09 UTC] wez@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 06:00:02 2025 UTC |
Description: ------------ I have to use sybase as the driver name for the pdo_mssql extension. Not sure if this is a bug, but is sure is very confusing. I only found the driver name after a lot of searching. It may be better if the driver name was mssql if the extension php_pdo_mssql is loaded. Reproduce code: --------------- $cn = new PDO('mssql:server=gary;database=drb2171','user1.drb2171','user1'); This gives an driver not found error $cn = new PDO('sybase:server=gary;database=drb2171','user1.drb2171','user1'); works OK.