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
sql"""SELECT TOP($l) * FROM journal ${Fragments.whereAndOpt(
userSql,
fromSql,
toSql
)} ORDER BY ts $orderSql"""
In logger i see it constructs SQL SELECT TOP(?) * FROM journal WHERE ts >= ?AND ts <= ? ORDER BY ts ASC. There is no space before "AND" so i get error Must declare the scalar variable "@P1AND". Same query works fine in 1.0.0-RC2.
The text was updated successfully, but these errors were encountered:
I have following query:
In logger i see it constructs SQL
SELECT TOP(?) * FROM journal WHERE ts >= ?AND ts <= ? ORDER BY ts ASC
. There is no space before "AND" so i get errorMust declare the scalar variable "@P1AND"
. Same query works fine in1.0.0-RC2
.The text was updated successfully, but these errors were encountered: