php-src/ext/pdo_dblib
Felipe Pena 6ba343aeff - Fixed bug #54167 (PDO_DBLIB returns null on SQLUNIQUE field)
# initial patch by: mjh at hodginsmedia dot com (5.3)
# trunk version by me
2011-03-05 23:07:45 +00:00
..
tests pdo_dblib - improve test skip messages 2010-06-30 03:16:04 +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 Add a PDO driver for Sybase style DB-lib (including MS SQL). 2005-01-17 01:15:14 +00:00
dblib_driver.c - Year++ 2011-01-01 02:17:06 +00:00
dblib_stmt.c - Fixed bug #54167 (PDO_DBLIB returns null on SQLUNIQUE field) 2011-03-05 23:07:45 +00:00
package2.xml set min pdo dep to 1.0.3, which will be the new pecl release 2006-05-02 02:43:11 +00:00
pdo_dblib.c - Year++ 2011-01-01 02:17:06 +00:00
php_pdo_dblib_int.h - Year++ 2011-01-01 02:17:06 +00:00
php_pdo_dblib.h - Year++ 2011-01-01 02:17:06 +00:00
README prep for PECL release 2005-07-27 03:12:43 +00:00

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.