이스케이프 문자를 테이블에 삽입하려고하면 경고가 발생합니다.
예를 들면 :
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 사용 )
누구든지이 문제를 해결하는 방법을 알고 있습니까?