Name Date Size #Lines LOC

..05-Dec-2019-

tests/H05-Dec-2019-

CREDITSH A D05-Dec-201967 32

READMEH A D05-Dec-20191.1 KiB2419

config.m4H A D05-Dec-20192.8 KiB8671

config.w32H A D05-Dec-20191.4 KiB4133

dblib_driver.cH A D05-Dec-201914.7 KiB612467

dblib_stmt.cH A D05-Dec-201913.7 KiB568423

pdo_dblib.cH A D05-Dec-20195.8 KiB238190

php_pdo_dblib.hH A D05-Dec-20191.7 KiB4419

php_pdo_dblib_int.hH A D05-Dec-20194.6 KiB167120

README

1This is the unified Sybase-DB style driver for PDO.
2
3This extension register itself as:
4	- 'mssql' when built against the Microsoft DBLIB library
5	- 'sybase' when built against Sybase ct-lib
6	- 'dblib' when built against FreeTDS
7
8The following database products are free for testing:
9	- Microsoft SQL Server Express (Windows Only)
10	- Sybase Adaptive Server (Windows, Linux, *NIX)
11	- Microsoft SQL Server Azure (One Month Trial Cloud Service)
12
13You must set the following environment variables to run the tests:
14	- PDO_DBLIB_TEST_DSN  - DSN (e.g., dblib:host=localhost;dbname=test)
15	- PDO_DBLIB_TEST_USER - database user
16	- PDO_DBLIB_TEST_PASS - database user password
17
18This extension supports multiple versions of the TDS protocol. There are
19behavioral differences between versions. When making changes, it's recommended
20to test across all supported versions. You can specify a version using a version
21parameter in the DSN. See dblib_driver.c:pdo_dblib_handle_factory() for valid
22values. Some tests check version-specific behavior by parsing this string, so
23it's best to use the DSN (rather than freetds.conf, etc.) to set the version.
24