sqlsrv API vs PDO sqlsrv
-
I’m stumbling over my choice to select the “SQL Server using MS PHP driver”(sqlsrv API) or the “PDO SqlSrv.” I have:
Srv2008R2, SQLExpress2012, or, I could connect to SQL Server 2008. I’m in IIS 7.5; I have php 5.4.4, and I have the drivers:
php_pdo_sqlsrv_53_nts.dll, (non-thread-safe)
php_pdo_sqlsrv_53_ts.dll, (non-thread-safe)
php_pdo_sqlsrv_54_nts.dll, (thread-safe)
php_pdo_sqlsrv_54_ts.dll (thread-safe)php_sqlsrv_53_nts.dll, (non-thread-safe)
php_sqlsrv_53_ts.dll, (non-thread-safe)
php_sqlsrv_54_nts.dll, (thread-safe)
php_sqlsrv_54_ts.dll (thread-safe)These are all enabled via PHP Manager in IIS.
I’m at the WordPress install (all the prerequisites checkout, which I can provide info on later).
My options are (from the setup-config.php abstraction):
MySQL (don’t need)
MySQLi (don’t need)
SQL Server using MS PHP driver
PDO MySQL (don’t need)
PDO SqlSrvI know “SQL Server using MS PHP driver” is the sqlsrv API and that “PDO SqlSrv” is the PDO version. I don’t think it should make a lot of difference, but which should I choose?
How do they correspond to the drivers I have listed above??
My install is inhouse. Any advice would be helpful.
Thank you!
- The topic ‘sqlsrv API vs PDO sqlsrv’ is closed to new replies.