From: | "Josh Berkus" <josh(at)agliodbs(dot)com> |
---|---|
To: | "guard" <guard(at)ficnet(dot)net>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: can't update 'c:\windows' |
Date: | 2001-10-23 18:33:54 |
Message-ID: | web-490710@davinci.ethosmedia.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Guard,
First, this kind of beginner question is more appropriate for the NOVICE
list.
> IF update table set field='c:\windows'
> but
>
> c:\windows -> c:windows
That's because "\" is the Unix escape character. If I were to want to
save "O'Reilly", for example, I could:
UPDATE table SET name = 'O\'Reilly';
Since you want to save an actual backslash, do this:
UPDATE table SET field = 'C:\\windows';
In your interface code, you may which to add a function that doubles
your backslashes.
-Josh Berkus
______AGLIO DATABASE SOLUTIONS___________________________
Josh Berkus
Complete information technology josh(at)agliodbs(dot)com
and data management solutions (415) 565-7293
for law firms, small businesses fax 621-2533
and non-profit organizations. San Francisco
From | Date | Subject | |
---|---|---|---|
Next Message | Josh Berkus | 2001-10-23 18:38:28 | Re: Auto Increment |
Previous Message | Joe Barrero | 2001-10-23 17:24:52 | Re: Auto Increment |