Re: escape_string_syntax
Nicolas Neuss <[email protected]>
| Newsgroups | gmane.lisp.clsql.general |
|---|---|
| Organization | University Karlsruhe |
| Message-ID | <[email protected]> |
Nicolas Neuss <[email protected]> writes: > I have a problem/question which might be already resolved in recent > versions of CLSQL. I use CLSQL 4.0.3.1 together with Postgresql 8.3, > and observe that it emits the following messages (when putting > LaTeX-code in my database): > > WARNING: nonstandard use of \\ in a string literal > LINE 1: ...ITLE = 'Oktalsystem in Dezimalsystem 1',CONTENT = 'Sei $1023... > ^ > HINT: Use the escape string syntax for backslashes, e.g., E'\\'. > > I have seen that I can disable this warning by setting > escape_string_warning = off > in "postgresql.conf". However, this would not be optimal, because later > Postgresql versions might require the escaped syntax. For the record: Instead of suppressing the warning, I have put now standard_conforming_strings = on in 'postgresql.conf'. (See http://www.network-theory.co.uk/docs/postgresql/vol3/PreviousPostgreSQLVersions.html#SEC63). Regards, Nicolas P.S.: Thank you, Kevin, for your reply.