Create raw SQL statement.
This allows you to turn a variable directly into sql without making it a bind parameter.
Warning This is dangerous and should only be used with trusted input or escaped input.
Use Sql.name or Sql.literal instead whenever possible to ensure proper quoting and escaping.
Sql.name
Sql.literal
Create raw SQL statement.
This allows you to turn a variable directly into sql without making it a bind parameter.
Warning This is dangerous and should only be used with trusted input or escaped input.
Use
Sql.nameorSql.literalinstead whenever possible to ensure proper quoting and escaping.