On Jul 3, 2007, at 10:49 , Erik Jones wrote:

On Jul 2, 2007, at 6:11 PM, Michael Glaesemann wrote:


On Jul 2, 2007, at 17:45 , Paul Lambert wrote:

tester=# insert into testing (test_text) values ('abcE'\\'123');

This should be
INSERT INTO testing (test_text) values (E'abc\123');

No, that will leave him with the string 'abc23' beinginserted, he wants the backslash to be included in the string, that's why he had two, so it should be:

INSERT INTO testing (test_text) values (E'abc\\123');

Ah, right. Thanks for the correction, Erik.

Michael Glaesemann
grzm seespotcode net



---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to [EMAIL PROTECTED] so that your
      message can get through to the mailing list cleanly

Reply via email to