Il tentativo di inserire un carattere di escape in una tabella genera un avviso.
Per esempio:
create table EscapeTest (text varchar(50));
insert into EscapeTest (text) values ('This is the first part \n And this is the second');
Produce l'avvertenza:
WARNING: nonstandard use of escape in a string literal
( Utilizzando PSQL 8.2 )
Qualcuno sa come aggirare questo?