尝试在表中插入转义字符会导致警告。
例如:
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)
任何人都知道如何解决这个问题?
部分。文本已插入,但仍会
生成警告。
我发现了一个讨论,指出文本需要在“E”之前,因此:
insert into EscapeTest (text) values (E'This is the first part \n And this is the second');
这抑制了警告,但文本仍未正确返回。当我添加额外的斜线作为迈克尔建议,它的工作。
因此:
insert into EscapeTest (text) values (E'This is the first part \\n And this is the second');