- (sql-quote . data) procedure
Escape and quote the concatenation of data to be used in SQL queries.
Warning: for Sqlite databases, sql-quote just replaces ' by '' and quotes the data. For Postgresql, sql-quote quotes the result of escape-string.
Consider using the API for placeholders of your favorite database egg instead od sql-quote whenever possible.