* Set the encoding that fmtId() and fmtQualifiedId() use. * * This is not safe against multiple connections having different encodings, * but there is no real other way to address the need to know the encoding for * fmtId()/fmtQualifiedId() input for safe escaping. Eventually we should get * rid of fmtId(). */
| 66 | * rid of fmtId(). |
| 67 | */ |
| 68 | void |
| 69 | setFmtEncoding(int encoding) |
| 70 | { |
| 71 | fmtIdEncoding = encoding; |
| 72 | } |
| 73 | |
| 74 | /* |
| 75 | * Return the currently configured encoding for fmtId() and fmtQualifiedId(). |
no outgoing calls