尝试在表中插入转义字符会导致警告。
例如:
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');
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。