You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Dmitry Stogov 728acc3785 Fixed bug #34358 (Fatal error: Cannot re-assign $this) 21 years ago
..
CREDITS Add a PDO driver for Sybase style DB-lib (including MS SQL). 22 years ago
README prep for PECL release 21 years ago
config.m4 fix typo 21 years ago
config.w32 use a number here, fixes PECL #3493 22 years ago
db.php nice and fluffy error handling 22 years ago
dblib_driver.c use pdo core test suite. 21 years ago
dblib_stmt.c use pdo core test suite. 21 years ago
package.xml update package.xml files and version numbers, in anticipation of a big bunch of releases. 21 years ago
pdo_dblib.c update package.xml files and version numbers, in anticipation of a big bunch of releases. 21 years ago
php_pdo_dblib.h nice and fluffy error handling 22 years ago
php_pdo_dblib_int.h Enable unix build for dblib/sybase/freetds. 21 years ago

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.