diff --git a/test/functional/pdo_sqlsrv/pdo_connect_driver.phpt b/test/functional/pdo_sqlsrv/pdo_connect_driver.phpt index 34186baf..4a934755 100644 --- a/test/functional/pdo_sqlsrv/pdo_connect_driver.phpt +++ b/test/functional/pdo_sqlsrv/pdo_connect_driver.phpt @@ -122,8 +122,7 @@ function testWrongODBC() { global $msodbcsqlMaj; - // TODO: this will change once ODBC 17 is officially released - $value = "ODBC Driver 17 for SQL Server"; + $value = "ODBC Driver 11 for SQL Server"; if ($msodbcsqlMaj == 17 || $msodbcsqlMaj < 13) { $value = "ODBC Driver 13 for SQL Server"; } diff --git a/test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt b/test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt index 83239cd7..d5bf20c7 100644 --- a/test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt +++ b/test/functional/sqlsrv/sqlsrv_bigint_outparam.phpt @@ -33,7 +33,7 @@ printf("\n"); // Call stored procedure with SQLSRV_PARAM_INOUT $bigintOut = 0; -$stmt = sqlsrv_prepare($conn, $outSql, array(array(&$bigintOut, SQLSRV_PARAM_INOUT, null, SQLSRV_SQLTYPE_VARCHAR(32)))); +$stmt = sqlsrv_prepare($conn, $outSql, array(array(&$bigintOut, SQLSRV_PARAM_INOUT, null, SQLSRV_SQLTYPE_BIGINT))); sqlsrv_execute($stmt); printf("Large bigint inout:\n"); var_dump($bigintOut); diff --git a/test/functional/sqlsrv/sqlsrv_connect_driver.phpt b/test/functional/sqlsrv/sqlsrv_connect_driver.phpt index 4f878bea..90e5b995 100644 --- a/test/functional/sqlsrv/sqlsrv_connect_driver.phpt +++ b/test/functional/sqlsrv/sqlsrv_connect_driver.phpt @@ -117,8 +117,7 @@ function testEncryptedWithODBC($msodbcsqlMaj, $server, $connectionOptions) function testWrongODBC($msodbcsqlMaj, $server, $connectionOptions) { - // TODO: this will change once ODBC 17 is officially released - $value = "ODBC Driver 17 for SQL Server"; + $value = "ODBC Driver 11 for SQL Server"; if ($msodbcsqlMaj == 17 || $msodbcsqlMaj < 13) { $value = "ODBC Driver 13 for SQL Server"; }