From: Lior Kaplan Date: Sun, 7 Aug 2016 12:15:32 +0000 (+0300) Subject: Recognize TDS versions 7.3 and 7.4 X-Git-Tag: php-7.1.0RC2~56^2~10^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=283ee1f6dca9ee7197d499cba8676c7731615623;p=php Recognize TDS versions 7.3 and 7.4 --- 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 @@ -280,6 +280,12 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ #ifdef DBVERSION_72 ,{"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 */