Skip to content

Commit

Permalink
Recognize TDS versions 7.3 and 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kaplanlior committed Aug 7, 2016
1 parent 3d51b1d commit 283ee1f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ext/pdo_dblib/dblib_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 283ee1f

Please sign in to comment.