Skip to content
Advertisement

Mysqli transaction fail to rollback when insert is failed

I have 3 databases, where I need to create database A, then database B, then create the linking database A_B.

I use mysqli transactions in PHP, there is a weird case(this is the first time i use php transactions), where it never rollback when it fails, case like database A fail to insert, but B still created. and A_B created incorrectly.

JavaScript

Why if A failed, it never hit the rollback() and it created the incorrect A_B and B data? Did I miss anything here? any help would be greatly appreciated!

Advertisement

Answer

In fact, I need to add this

“mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);”

Now it is catching the invalid use case:

PHP Fatal error: Uncaught mysqli_sql_exception: Incorrect integer value: ” for column ‘boolean_X’ at row 1 in yourFile.php

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement