- escapedVariants
string escapedVariants(Mysql db, string sql, Variant[string] t)
Undocumented in source. Be warned that the author may not have intended to support it.
- escapedVariants
string escapedVariants(Mysql db, string sql, Variant[] t)
Note: ?n params are zero based!
- makeQuery
string makeQuery(Mysql db, string sql, ...)
Just executes a query. It supports placeholders for parameters
by using ? in the sql string. NOTE: it only accepts string, int, long, byte, and null types.
Others will fail runtime asserts.
- toSql
string toSql(Variant a, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSql
string toSql(string s, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSql
string toSql(long s, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSqlArray
string toSqlArray(long s, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSqlArray
string toSqlArray(Variant a, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSqlName
string toSqlName(string s, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSqlName
string toSqlName(long s, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.
- toSqlName
string toSqlName(Variant a, Mysql db)
Undocumented in source. Be warned that the author may not have intended to support it.