php-sqlsrv/README.md

83 lines
3.5 KiB
Markdown
Raw Normal View History

# Microsoft Drivers for PHP for SQL Server
2014-07-23 00:02:28 +02:00
**Welcome to the Microsoft Drivers for PHP for SQL Server project!**
2014-07-23 00:02:28 +02:00
2014-11-01 01:03:55 +01:00
The Microsoft Drivers for PHP for SQL Server are PHP 5 extensions that allow for the reading and writing of SQL Server data from within PHP scripts. The release contains two drivers, the SQLSRV driver and the PDO_SQLSRV driver. The SQLSRV extension provides a procedural interface while the PDO_SQLSRV extension implements PDO for accessing data in all editions of SQL Server 2005 and later (including SQL Azure). These drivers rely on the Microsoft ODBC Driver 11 for SQL Server to handle the low-level communication with SQL Server.
2014-07-23 00:02:28 +02:00
Microsoft has published the source code to the driver on this site. With each successive update, we will revisit this plan. We've seen too many projects over-reach in their plans to be responsive to the community. We would prefer to start with a more conservative approach and make sure we're successfully delivering on that before expanding. We understand that many developers will download the source code to create their own build(s) of the driver. However, Microsoft supports only the Microsoft signed versions of the driver.
2014-07-23 00:02:28 +02:00
We hope you enjoy using the Microsoft Drivers for PHP for SQL Server.
2014-07-23 00:02:28 +02:00
The Microsoft Drivers for PHP for SQL Server Team
2014-07-23 00:02:28 +02:00
## Announcements
2014-12-13 02:44:17 +01:00
Please visit the [blog][blog] for more announcements.
2014-07-23 00:02:28 +02:00
## Prerequisites
2014-07-23 00:02:28 +02:00
You must first be able to build PHP without including these
extensions. For help with doing this, see the [official PHP website][phpweb].
2014-07-23 00:02:28 +02:00
## Build
2014-07-23 00:02:28 +02:00
To compile the SQLSRV and PDO_SQLSRV:
2014-07-23 00:02:28 +02:00
1. Copy the source code directories from this repository into the ext
2014-07-23 00:02:28 +02:00
subdirectory.
2. Run buildconf.bat to rebuild the configure.js script to include the
2014-07-23 00:02:28 +02:00
new drivers.
3. Run "cscript configure.js --enable-sqlsrv=shared --enable-pdo
--with-pdo-sqlsrv=shared [other options]" to generate the makefile.
2014-07-23 00:02:28 +02:00
Run "cscript configure.js --help" to see what other options are
available. It is possible (and even probable) that other extensions
will have to be disabled or enabled for the compile to succeed.
Search bing.com for configurations that have worked for other people.
* It might be possible to compile these extensions as non-shared but that configuration has not been tested.
2014-07-23 00:02:28 +02:00
4. Run "nmake". It is suggested that you run the entire build. If you
2014-07-23 00:02:28 +02:00
wish to do so, run "nmake clean" first.
5. To install the resulting build, run "nmake install" or just copy
2014-07-23 00:02:28 +02:00
php_sqlsrv.dll and php_pdo_sqlsrv.dll to your PHP extension directory.
Also enable them within your PHP installation's php.ini file.
2014-11-01 00:53:19 +01:00
This software has been compiled and tested under PHP 5.4.32 and later
using the Visual C++ 2008 and 2012, Express and Standard compilers.
2014-07-23 00:02:28 +02:00
## Documentation
2014-07-23 01:39:12 +02:00
This driver is documented on [Microsoft's Documentation web site][phpdoc].
## Changes
For details about the changes included in this release, please see our [blog][blog] or see the SQLSRV_Readme.htm
file that is part of the download package.
## Known Issues
Please visit the [project on Github][project] to view outstanding [issues][issues].
## Notes
####Note about version.h
2014-07-23 00:02:28 +02:00
The version numbers in version.h in the source do not match the
version numbers in the supported PHP extension.
## License
The Microsoft Drivers for PHP for SQL Server are licensed under the MIT license. See the LICENSE file for more details.
[blog]: http://blogs.msdn.com/b/sqlphp/
[project]: https://github.com/Azure/msphpsql
[issues]: https://github.com/Azure/msphpsql/issues
[phpweb]: http://php.net
[phpdoc]: http://msdn.microsoft.com/en-us/library/dd903047%28SQL.11%29.aspx