Tenter d'insérer un caractère d'échappement dans une table entraîne un avertissement.
Par exemple:
create table EscapeTest (text varchar(50));
insert into EscapeTest (text) values ('This is the first part \n And this is the second');
Produit l'avertissement:
WARNING: nonstandard use of escape in a string literal
( Utilisation de PSQL 8.2 )
Quelqu'un sait comment contourner cela?