Skip to content

Commit

Permalink
4.1.3 Release and Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
meet-bhagdev committed Oct 3, 2016
1 parent 84f43a6 commit c8a767a
Show file tree
Hide file tree
Showing 10 changed files with 420 additions and 12 deletions.
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -10,7 +10,11 @@ The Microsoft Drivers for PHP for SQL Server Team

##Announcements

**September, 2016** : Updated Windows drivers (4.1.2) compiled with PHP 7.0.10 are available. Here is the list of updates:
**October 4 , 2016** : Updated Windows drivers (4.1.3) compiled with PHP 7.0.11 and 7.1.0RC3 are available. Here is the list of updates:

- Fixed [issue #139](https://github.com/Microsoft/msphpsql/issues/139) : sqlsrv_fetch_object calls custom class constructor in static context and outputs an error.

**September 9, 2016** : Updated Windows drivers (4.1.2) compiled with PHP 7.0.10 are available. Here is the list of updates:

- Fixed [issue #119](https://github.com/Microsoft/msphpsql/issues/119) (modifying class name in sqlsrv_fetch_object).
- Added following integer SQL Types constants for cases which function-like SQL types constants cannot be used e.g. type comparison:
Expand Down
2 changes: 1 addition & 1 deletion pdo_sqlsrv/CREDITS
@@ -1 +1 @@
Microsoft Drivers 4.1 for PHP for SQL Server (PDO driver)
Microsoft Drivers 4.1.0 for PHP for SQL Server (PDO driver)
4 changes: 2 additions & 2 deletions pdo_sqlsrv/pdo_dbh.cpp
Expand Up @@ -17,11 +17,11 @@
// IN THE SOFTWARE.
//---------------------------------------------------------------------------------------------------------------------------------

#include "pdo_sqlsrv.h"
#include "php_pdo_sqlsrv.h"

#include <psapi.h>
#include <windows.h>
#include <winver.h>

#include <string>
#include <sstream>

Expand Down
2 changes: 1 addition & 1 deletion pdo_sqlsrv/pdo_init.cpp
Expand Up @@ -17,7 +17,7 @@
// IN THE SOFTWARE.
//---------------------------------------------------------------------------------------------------------------------------------

#include "pdo_sqlsrv.h"
#include "php_pdo_sqlsrv.h"
#include <psapi.h>

#ifdef ZTS
Expand Down
2 changes: 1 addition & 1 deletion pdo_sqlsrv/pdo_parser.cpp
Expand Up @@ -19,7 +19,7 @@
// IN THE SOFTWARE.
//---------------------------------------------------------------------------------------------------------------------------------

#include "pdo_sqlsrv.h"
#include "php_pdo_sqlsrv.h"

// Constructor
conn_string_parser:: conn_string_parser( sqlsrv_context& ctx, const char* dsn, int len, _Inout_ HashTable* conn_options_ht )
Expand Down
2 changes: 1 addition & 1 deletion pdo_sqlsrv/pdo_stmt.cpp
Expand Up @@ -17,7 +17,7 @@
// IN THE SOFTWARE.
//---------------------------------------------------------------------------------------------------------------------------------

#include "pdo_sqlsrv.h"
#include "php_pdo_sqlsrv.h"

// *** internal variables and constants ***

Expand Down
2 changes: 1 addition & 1 deletion pdo_sqlsrv/pdo_util.cpp
Expand Up @@ -17,7 +17,7 @@
// IN THE SOFTWARE.
//---------------------------------------------------------------------------------------------------------------------------------

#include "pdo_sqlsrv.h"
#include "php_pdo_sqlsrv.h"

#include "zend_exceptions.h"

Expand Down

0 comments on commit c8a767a

Please sign in to comment.