I am working on an Android application that uses SQLite as local storage. I need to use parameters in a sql query, but all the examples I found contain unnamed parameters, for example:
INSERT INTO SomeTable(ColA, ColB, ColC) VALUES (?,?,?);
I am wondering - does SQLite on Android support named parameters? Something like this instead of question marks.
INSERT INTO SomeTable(ColA, ColB, ColC) VALUES (@paramA, @paramB, @paramC);
SQLite itself supports this (according to the documentation https://www.sqlite.org/lang_expr.html ).
Thank you in advance
source share