Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Standardised INSERT statements

Compare
Choose a tag to compare
@brokencube brokencube released this 23 Feb 16:04
· 194 commits to master since this release

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 = ?;