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
Just saw a (minor) issue in the database setup file (database/onlineshop.sql):
database/onlineshop.sql
START TRANSACTION; […] CREATE DEFINER=`root`@`localhost` PROCEDURE […] CREATE TABLE […] COMMIT;
Any DDL statement causes an implicit commit, so you should either completely remove the transaction or wrap only the DML statements inside. cf. https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just saw a (minor) issue in the database setup file (
database/onlineshop.sql
):Any DDL statement causes an implicit commit, so you should either completely remove the transaction or wrap only the DML statements inside.
cf. https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html
The text was updated successfully, but these errors were encountered: