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
commit e811bff3bb
No known key found for this signature in database
GPG Key ID: D66C9593118BCCB6

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;
}