テーブルにエスケープ文字を挿入しようとすると、警告が発生します。
例えば:
create table EscapeTest (text varchar(50));
insert into EscapeTest (text) values ('This is the first part \n And this is the second');
警告を生成します:
WARNING: nonstandard use of escape in a string literal
(PSQL 8.2を使用)
誰もがこれを回避する方法を知っていますか?