Answer by Matt Smith for SQLSRV driver vs. PDO driver for PHP with MS SQL Server
Microsoft has finally committed some resources to tailoring their native driver to work well with PHP. I am currently beta testing on Apache 2.4 64 Bit. Beta PHP 7 SQL_SRV 64Bit Driver
View ArticleAnswer by Robert Calhoun for SQLSRV driver vs. PDO driver for PHP with MS SQL...
SQLSRV and PDO_SQLSRV are the two current-generation php drivers available from Microsoft, but both use the same code underneath: SQL Server Native Client 11. (That's why there's no Mac or Linux...
View ArticleAnswer by SDC for SQLSRV driver vs. PDO driver for PHP with MS SQL Server
PDO allows you to write you code to be reasonably DB-neutral.If you want truly DB-neutral, you'd want to use a full DB abstraction layer like NotORM -- with plain PDO, you'd still need to be careful...
View ArticleSQLSRV driver vs. PDO driver for PHP with MS SQL Server
What considerations should I take into account when choosing between SQLSRV driver vs. PDO driver (for PHP with MS SQL server)? I saw this previous Stackoverflow post ( When using PHP on Windows, what...
View Article