prefix_with("TEXT") adds arbitrary text between INSERT and the rest of the SQL. execute() accepts a list of dictionaries with the records you would like to insert or a single dictionary if you only want to insert a single record.
The SQLite syntax for the behavior you're looking for:
prefix_with("TEXT")
adds arbitrary text betweenINSERT
and the rest of the SQL.execute()
accepts a list of dictionaries with the records you would like to insert or a single dictionary if you only want to insert a single record.The SQLite syntax for the behavior you're looking for: