storing windows path strings

From: Scott Frankel <leknarf(at)pacbell(dot)net>
To: pgsql-general(at)postgresql(dot)org
Subject: storing windows path strings
Date: 2010-01-29 22:42:06
Message-ID: 150B4D08-1FED-4047-AA78-EC798CB8B091@pacbell.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


Hi all,

What's the proper way to store directory path strings in a table,
especially ones with backslashes like windows?

I'm currently using a prepared statement with bind value. Do I need
to pre-parse all user entries to identify any backslash characters
before passing the string to my insert statement?

Searches through the documentation turned up references to
escape_string_warning (boolean) and standard_conforming_strings
(boolean). I'm not sure I'll have access to server side config.

Thanks in advance!
Scott

eg:

CREATE TABLE foo (
foo_id SERIAL PRIMARY KEY,
name VARCHAR(32) UNIQUE NOT NULL,
dirpath text DEFAULT NULL);

INSERT INTO foo (name, dirpath) VALUES ('bar', 'c:\windows\path\to
\bar');
--> WARNING: nonstandard use of \\ in a string literal

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Cédric Villemain 2010-01-29 23:00:11 Re: storing windows path strings
Previous Message Bill Moran 2010-01-29 21:57:18 Re: Possible to set postgres in case insensitive mode ?