This repository has been archived by the owner on May 12, 2022. It is now read-only.
Standardised INSERT statements
INSERT statements generated by the QueryBuilder now use standard syntax
INSERT INTO table (col1, col2) VALUES (?, ?);
instead of MySQL specific syntax
INSERT INTO table SET col1 = ?, col2 = ?;