I am new to sqlite and android, my question is simple, in visual studio if you want to make a query from local variable it is done by "'localvariable'" like wise but how on sqlite is possible?
for eg..
String local;
local = column1;
sqlite query
SELECT "'local'" FROM table
Table structure
table: column1 column2
in the above i cannot use the assigned local variable? what would be the syntax i am not able to figure out. i use raw query.
any help is highly appreciated