class Clear::Expression::UnsafeSql
- Clear::Expression::UnsafeSql
- Reference
- Object
Overview
Wrap an unsafe string. Useful to cancel-out the safe_literal function used internally. Obviously, this can lead to SQL injection, so beware!
Included Modules
Defined in:
clear/expression/expression.crConstructors
Instance Method Summary
- #to_json(json = nil) : String
-
#to_s : String
Returns a nicely readable and concise string representation of this object, typically intended for users.
- #to_sql : String
Instance methods inherited from module Clear::Expression::Literal
to_json(json : JSON::Builder)
to_json,
to_sql
to_sql
Constructor Detail
Instance Method Detail
def to_s : String
#
Description copied from class Object
Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO)
which can be overridden for custom implementations.
Also see #inspect
.