Query parameters? #4526
gordonfroyle
started this conversation in
General
Replies: 1 comment 2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Assume that R(A) denotes a table R with a single column A and it has a few rows.
If I execute queries like
SELECT * FROM R WHERE A = :value;
SELECT * FROM R WHERE A = @value;
SELECT * FROM R WHERE A = ?;
(Note value is just an arbitrary string)
then SQLite Studio pops up a window asking me to specify a value for the "query parameter".
Is this feature documented anywhere in the manual? (I have looked through twice)
I'd just like to know more about this feature because it might be useful (for teaching purposes).
Beta Was this translation helpful? Give feedback.
All reactions