We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code:
<?php $ca = $mysqli->query('SELECT 1 '); $c = $ca->fetch_assoc(); try { $mysqli->query('SELECT non_existent_column'); } catch (Exception $e) { echo "Caught exception"."\n"; } $c = $ca->fetch_assoc();
Resulted in this output:
Caught exception Fatal error: Uncaught mysqli_sql_exception: Unknown column 'non_existent_column' in 'field list' ...
But I expected this output instead:
Caught exception
PHP 8.2
No response
The text was updated successfully, but these errors were encountered:
This was fixed by #14256, but because the commit title didn't include the bug number GH didn't close it automatically. Manually closing it now.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
The following code:
Resulted in this output:
But I expected this output instead:
PHP Version
PHP 8.2
Operating System
No response
The text was updated successfully, but these errors were encountered: