In the real world, people on official business are often required to follow strict procedures when dealing with certain situations. Law enforcement officials, for example, are required to “follow p
Tag: working
In SQLITE3, how do I make SQL escape in the Like clause?
I want to run LIKE queries in sqlite3 and safely escape user input. Basically, I want to do something like this:
< /p> char* query = “SELECT * FROM table WHERE LOWER(notes) LIKE’%?%'”;
sqlite