toSQL method
Converts this value to its SQL string representation.
Delegates to the static _to
method for the actual conversion.
Returns the SQL-safe string representation of the value.
Implementation
@override
String toSQL() {
return QVar._to<T>(value);
}