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
will execute a query select id from users where name='$1'
'Jonathan' part will not be used at all. But I'll get id of user with name '$1' if there is one.
Probably no one would use strings like that - but we actually hit this issue with filtering on time:
will execute a query
select id from users where name='Jonathan'
will execute a query
select id from users where name='$1'
'Jonathan' part will not be used at all. But I'll get id of user with name '$1' if there is one.
Probably no one would use strings like that - but we actually hit this issue with filtering on time:
sqlWhere $ "time >= (NOW() - interval '"<?> durationSecs <+>" seconds'"
The text was updated successfully, but these errors were encountered: