I am using select statement to retrieve certain data from sqlite. The result contains ' char which results error when selecting data. How can I ignore it?
Below is my sql statement:
string query = string.Format("select * from TableA where [Col]='{0}'",suraTName)
Statement: select * from TableA where [Col]='An-Naazi'aat'
How to ignore ' char and have the correct the result?
Thanks!