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
Using step/with stmt data also resets the statement and so it is not possible to write code like:
stmt: prepare db "SELECT * FROM Table WHERE Name LIKE ?"while [row: step/with stmt ["A%"]][ ;; currently this will process just the first row!
probe row
]
There must be a new command (bind), which would bind data with the statement, before using the step (and only once, because above code would try to bind the data on each row!).
The text was updated successfully, but these errors were encountered:
Using
step/with stmt data
also resets the statement and so it is not possible to write code like:There must be a new command (
bind
), which would bind data with the statement, before using thestep
(and only once, because above code would try to bind the data on each row!).The text was updated successfully, but these errors were encountered: