NAME
SqlSetClause — Derive a set clause for an update query, using a dict.
SYNOPSIS
SqlSetClause DictValue
DESCRIPTION
Return Value
A string of the form Key1 = Value1, Key2 = Value2, etc. where each key and value are from the dict.
Arguments
DictValueColumn name / value pairs to use to build set clause.
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
% SqlSetClause {intvalue 1 realvalue 1.1}
intvalue = 1, realvalue = 1.1
SEE ALSO
SqlUpdateStatement, SqlWhereClause
KEYWORDS
sql