search for: sqlite_mprintf

Displaying 1 result from an estimated 1 matches for "sqlite_mprintf".

Did you mean: sqlite3_mprintf
2006 Jun 25
1
escaping in sqlite
Hi Timo&all, a recent change in the sql drivers introduced escaping, but sqlite is a different in this aspect: You cannot escape with a backslash, the only character that needs escaping is the quoting character itself (by doubling it, as the SQL standard says). As the escaping function does not know which quote character is used, one should only use the single tick ' (again, as the SQL