php-src/ext/pdo_dblib
2005-02-16 18:09:26 +00:00
..
config.w32 use a number here, fixes PECL #3493 2005-02-16 18:09:26 +00:00
CREDITS
db.php nice and fluffy error handling 2005-01-18 02:42:52 +00:00
dblib_driver.c update for api changes 2005-02-06 22:34:53 +00:00
dblib_stmt.c update for api changes 2005-02-06 22:34:53 +00:00
pdo_dblib.c fix pdo_mssql.dll build 2005-02-13 23:13:14 +00:00
php_pdo_dblib_int.h Make this compile with the generic ntwdblib from Microsoft 2005-01-18 07:17:01 +00:00
php_pdo_dblib.h nice and fluffy error handling 2005-01-18 02:42:52 +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)

This extension should also compile and run under unix platforms, but I haven't
written the config.m4 for that yet (volunteers welcome).


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.