NAME
SqlInsertStatement — Create an INSERT INTO statement.
SYNOPSIS
SqlInsertStatement TableName DictValue
DESCRIPTION
Return Value
A query string for an INSERT.
Arguments
TableNameName of table to do insert on.
DictValueDict containing column names / values for insertion.
More Info
Note that for the dicts, you (currently) must put quotes around any values that will go into text columns or receive an error. We may add support in a future release for automatically detecting the column type and quoting values as necessary.

For information regarding exceptions / errors, see here.
EXAMPLES
% SqlInsertStatement my_table {desc 'one' notes 'uno'}
INSERT INTO my_table (desc, notes) VALUES ('one', 'uno')
SEE ALSO
SqlSetClause, SqlUpdateStatement, SqlWhereClause
KEYWORDS
sql