diff options
author | Lior Kaplan <kaplan@linnovate.net> | 2016-08-07 15:15:32 +0300 |
---|---|---|
committer | Lior Kaplan <kaplan@linnovate.net> | 2016-08-07 15:15:59 +0300 |
commit | 283ee1f6dca9ee7197d499cba8676c7731615623 (patch) | |
tree | e12e50dfc0b273dc4a7ebe4afdd0af5ff261a841 /ext | |
parent | 3d51b1d5441d41aace4a37142eba3e8855ad69c2 (diff) | |
download | php-git-283ee1f6dca9ee7197d499cba8676c7731615623.tar.gz |
Recognize TDS versions 7.3 and 7.4
Diffstat (limited to 'ext')
-rw-r--r-- | ext/pdo_dblib/dblib_driver.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c index 70b4402982..b5744a4243 100644 --- a/ext/pdo_dblib/dblib_driver.c +++ b/ext/pdo_dblib/dblib_driver.c @@ -281,6 +281,12 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ ,{"7.2",DBVERSION_72} ,{"8.0",DBVERSION_72} #endif +#ifdef DBVERSION_73 + ,{"7.3",DBVERSION_73} +#endif +#ifdef DBVERSION_74 + ,{"7.4",DBVERSION_74} +#endif ,{"10.0",DBVERSION_100} ,{"auto",0} /* Only works with FreeTDS. Other drivers will bork */ |