TIMAI2
5
Which sqlite extension are you using ?
What are the bindParams for in your project? Possibly you mean this?
Use the
"SELECT * FROM tbl1 WHERE X contains 'Y';"
or
"SELECT * FROM tbl1 WHERE X LIKE '%Y%';"
or
"SELECT * FROM tbl1 WHERE instr(X, 'Y') > 0;"
query to find the value in a sentence
See also here: