1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Fix odbc_data_source_001.phpt
This commit is contained in:
Christoph M. Becker
2024-08-06 16:54:58 +02:00

View File

@@ -17,7 +17,7 @@ include 'config.inc';
$conn = odbc_connect($dsn, $user, $pass);
try {
var_dump(odbc_data_source($conn, NULL));
var_dump(odbc_data_source($conn, SQL_FETCH_FIRST + SQL_FETCH_NEXT));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}