Name Date Size #Lines LOC

..05-Dec-2019-

tests/H05-Dec-2019-

CREDITSH A D05-Dec-201954 32

READMEH A D05-Dec-2019919 2618

config.m4H A D05-Dec-20192.8 KiB8873

config.w32H A D05-Dec-20192.5 KiB7464

dblib_driver.cH A D05-Dec-201910 KiB424311

dblib_stmt.cH A D05-Dec-20198.9 KiB332235

package2.xmlH A D05-Dec-20192.2 KiB7772

pdo_dblib.cH A D05-Dec-20195.2 KiB239181

php_pdo_dblib.hH A D05-Dec-20191.6 KiB4417

php_pdo_dblib_int.hH A D05-Dec-20193.9 KiB144100

README

1This is the unified Sybase-DB style driver for PDO.
2There are three implementations of this library that are known to me:
3
4- The Sybase DB lib itself
5- MSSQL DB lib
6- FreeTDS DB lib
7
8This extension will compile and register itself as 'mssql' when built against
9the mssql libraries (and be named php_pdo_mssql.dll), or 'sybase' otherwise
10(php_pdo_sybase.dll)
11
12If you want to try out the free "desktop" version of SQL Server, known as the MSDE, google to obtain the appropriate download link.  Here are some short tips on getting it running:
13
14- Download it and run it to extract it
15- Open up a command prompt
16- cd \MSDERelA
17- setup.exe SQLSECURITY=1 SAPWD=yoursecretpassword
18- cd \Program Files\Microsoft SQL Server\80\Tools\Binn
19- SVRNETCN.exe
20-   enable TCP    (you MUST do this if you want to access it via FreeTDS/Sybase libs)
21- net start mssqlserver
22
23Consult the MS docs for more information about all this stuff.
24
25
26