Skip to content
New issue

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

Enable mysqli error reporting #218

Open
wants to merge 3 commits into
base: 2.14.x
Choose a base branch
from

Conversation

kamil-tekiela
Copy link
Contributor

Signed-off-by: Kamil Tekiela [email protected]

Q A
Documentation no
Bugfix yes
BC Break potentially
New Feature no
RFC no
QA no

Description

It seems as if mysqli was not reporting exceptions until now. I have enabled error reporting, which will make sure that every time an error happens an exception is thrown. This follows the same approach as the PDO adapter. I am not sure about abstracting exceptions as it seems PDOException is not abstracted in most places.
The background of this change is to bring it in line with the new default mysqli error reporting in PHP 8.1. Normally, to avoid BC we would add mysqli_report(MYSQLI_REPORT_OFF) but in this case that line was missing previously and it seems like the project doesn't care about error handling. Therefore, it's better to enable error reporting for this extension to align it with PDO behaviour.

Regarding the right place. In PDO error reporting is enabled after connection, but in mysqli it makes more sense to do it before.

Signed-off-by: Kamil Tekiela <[email protected]>
Signed-off-by: Kamil Tekiela <[email protected]>
Signed-off-by: Kamil Tekiela <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant