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
For MySQL backend, it works to put 2 separate lines in the query editor:
set @id1 = 12345;
select * from table1 where idcolumn = @id1;
Have you tried this for SQLite?
It's true that the ? placeholder syntax does not work in Antares + MySQL. Since those represent ordinal positions, it would likely be necessary to count the unquoted ? and prompt in the dialog window for one value for each. Matching up corresponding data types might be an additional complication.
Is your feature request related to a problem? Please describe.
Can't run SQL query width binding values.
Describe the solution you'd like
Open dialog window to provide binding value.
Additional context
https://www.sqlite.org/c3ref/bind_blob.html
https://www.databasestar.com/sql-bind-variables/
The text was updated successfully, but these errors were encountered: