I have a question string variable that contains the word "Where is my car?"
when I try and run a select on this it crashes.
String sql = "Select * from tblHALv2001 WHERE tblHALv2001 MATCH '" + question + "'";
fts5: syntax error near "?"
If I remove the question mark from the question variable then it works. But how can I correct the statement so it doesn't crash?