The locks are not applicable in SQLite3
SQLite requires us to build the multi-row insert as a listing of select with unions joining them together. So we'll build out this list of columns and then join them all together with select unions to complete the queries.
Adds a order by clause to the query, using "collate nocase" for the sort.
Compiles an update query.
Compile a truncate table statement into SQL.
Compiles a columnInfo query
SQLite3 Query Builder & Compiler