php-src/ext/pdo_dblib
Steph Fox 1abe544f41 - Fix bug #38805 ( PDO Truncates Text from SQL Server Text Data Type Field)
- Bring behaviour into line with ext/mssql
- Several memleaks plugged
2009-03-19 22:15:03 +00:00
..
tests use pdo core test suite. 2005-07-20 05:27:27 +00:00
config.m4 - Fixed bug #44991 (Compile Failure With freetds0.82) (patch by matthias at dsx dot at) 2008-10-04 12:51:51 +00:00
config.w32 MFB: Remove pecl includes (Steph), except pdo_odbc which will remain broke 2006-05-11 21:48:57 +00:00
CREDITS
db.php
dblib_driver.c - Fix bug #38805 ( PDO Truncates Text from SQL Server Text Data Type Field) 2009-03-19 22:15:03 +00:00
dblib_stmt.c - Fix bug #38805 ( PDO Truncates Text from SQL Server Text Data Type Field) 2009-03-19 22:15:03 +00:00
package.xml typo 2005-07-27 04:20:50 +00:00
pdo_dblib.c - This is PHP 6 - if this ... ever gets out 2009-03-10 23:40:06 +00:00
php_pdo_dblib_int.h - This is PHP 6 - if this ... ever gets out 2009-03-10 23:40:06 +00:00
php_pdo_dblib.h - This is PHP 6 - if this ... ever gets out 2009-03-10 23:40: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.