php-src/ext/pdo_dblib
Rasmus Lerdorf 937358ebc7 Revert attempt at supporting both autoconf 2.13 and
modern versions in the same build chain.  There are
simply too many broken things in 2.13 to make it work.
Cache handling is broken as well which is why I need
to revert the pdo_inc_path cache fix as well.

trunk is now 2.60+ only and I'll work on cleaning out
all the legacy cruft from there.
2009-11-29 06:13:22 +00:00
..
config.m4 Revert attempt at supporting both autoconf 2.13 and 2009-11-29 06:13:22 +00:00
config.w32 MFH: Fix --with-pdo-mssql build and add some warnings if header/libs are not found 2009-05-19 10:22:25 +00:00
CREDITS
db.php
dblib_driver.c - Possible fix for bug #49344 on Windows (pdo_mssql fails to connect,throws PDOException SQLSTATE[] (null) (severity 0)) 2009-09-10 01:20:42 +00:00
dblib_stmt.c MFH 2009-03-19 22:16:29 +00:00
package2.xml
pdo_dblib.c MFH: Fixed shared build 2009-05-20 10:18:51 +00:00
php_pdo_dblib_int.h MFH: Bump copyright year, 3 of 3. 2008-12-31 11:15:49 +00:00
php_pdo_dblib.h MFH: Fix --with-pdo-mssql build and add some warnings if header/libs are not found 2009-05-19 10:22:25 +00:00
README

This is the unified Sybase-DB style driver for PDO.
There are three implementations of this library that are known to me:

- The Sybase DB lib itself
- MSSQL DB lib
- FreeTDS DB lib

This extension will compile and register itself as 'mssql' when built against
the mssql libraries (and be named php_pdo_mssql.dll), or 'sybase' otherwise
(php_pdo_sybase.dll)

If 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:

- Download it and run it to extract it
- Open up a command prompt
- cd \MSDERelA
- setup.exe SQLSECURITY=1 SAPWD=yoursecretpassword
- cd \Program Files\Microsoft SQL Server\80\Tools\Binn
- SVRNETCN.exe
-   enable TCP    (you MUST do this if you want to access it via FreeTDS/Sybase libs)
- net start mssqlserver

Consult the MS docs for more information about all this stuff.