Microsoft SQL Server and Sybase Functions (PDO_DBLIB) MS SQL Server (PDO)
&reftitle.intro; &warn.experimental; PDO_DBLIB is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to Microsoft SQL Server and Sybase databases through the FreeTDS libary. On Windows, you should use the PDO_ODBC driver to connect to Microsoft SQL Server and Sybase databases, as the native Windows DB-LIB is ancient, thread un-safe and no longer supported by Microsoft.
PDO_DBLIB DSN Connecting to Microsoft SQL Server and Sybase databases &reftitle.description; The PDO_DBLIB Data Source Name (DSN) is composed of the following elements: DSN prefix The DSN prefix is sybase: if PDO_DBLIB was linked against the FreeTDS libraries, mssql: if PDO_DBLIB was linked against the Microsoft SQL Server libraries, or dblib: if linked against any other variety of DB-lib. host The hostname on which the database server resides. Defaults to 127.0.0.1. dbname The name of the database. charset The client character set. appname The application name (used in sysprocesses). Defaults to "PHP Generic DB-lib" or "PHP freetds". secure Currently unused. &reftitle.examples; PDO_DBLIB DSN examples The following examples show a PDO_DBLIB DSN for connecting to Microsoft SQL Server and Sybase databases: