You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose you're in a dark room and you're not sure who you're interacting with
[sqlQQ| SELECT 'hello world?' |]
This gives a FormatError because we're trying to split on the ?, even though the ? is not a parameter to substitute syntactically, but a character in the string.
We can work around this by providing the value as a query parameter:
[sqlQQ| SELECT #{PersistText "hello world?"} |]
The text was updated successfully, but these errors were encountered:
Suppose you're in a dark room and you're not sure who you're interacting with
[sqlQQ| SELECT 'hello world?' |]
This gives a
FormatError
because we're trying to split on the?
, even though the?
is not a parameter to substitute syntactically, but a character in the string.We can work around this by providing the value as a query parameter:
[sqlQQ| SELECT #{PersistText "hello world?"} |]
The text was updated successfully, but these errors were encountered: