I use sqlInterpolate whenever I can, and it encodes the strings via dbQuoteString and encodeString by default, which is fine, but I don't think that there is an operation to decode a string that I am getting out of a database.
Maybe there is a standard way to decode such a string, but I cannot find it. I cannot even use capture.output with cat, because capture_output encodes the string again.
I use
sqlInterpolatewhenever I can, and it encodes the strings viadbQuoteStringandencodeStringby default, which is fine, but I don't think that there is an operation to decode a string that I am getting out of a database.Maybe there is a standard way to decode such a string, but I cannot find it. I cannot even use
capture.outputwithcat, becausecapture_outputencodes the string again.