I’m working on an iPhone app, which uses the SQLite database, and I’m trying to handle escape characters. I know that there is LIKE ESCAPE to handle escape characters in select statements, but in my application i have SELECT, INSERT, UPDATE actions and i really don’t know how to go about handling escape characters.
Share
Use FMDB, and then you won’t have to. It has built-in parameter binding support, and that will take care of any escaping you need for you.