Basic exception handling for IBM DB2 #4929
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
MySQL
After the changes in #4928, the build on PHP 7.3 and MySQL 8 started failing with:
I cannot reproduce it locally and it didn't fail previously, but we need to fix it in order to let the build pass on this PR.
IBM DB2
db2_exec()
, if it fails, the error information will be available viadb2_stmt_*()
, notdb2_conn_*()
. The driver will use the latest executed statement which is available to the driver internally.@db2_execute
needs to be error-suppressed since otherwise, it may trigger a warning.db2_(conn|stmt)_error()
doesn't uniquely identify a given error type, so it cannot be used for instantiation of error-specific exceptions.VALUE
is a reserved keyword in IBM DB2, so we have to use another name in the integration test.