From: | jkells <jtkells(at)verizon(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: General coding question |
Date: | 2011-12-20 20:42:21 |
Message-ID: | Nq6Iq.146235$ql3.89402@en-nntp-12.dc1.easynews.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Tue, 20 Dec 2011 13:32:32 -0500, David Johnston wrote:
> -----Original Message-----
> From: pgsql-general-owner(at)postgresql(dot)org
> [mailto:pgsql-general-owner(at)postgresql(dot)org] On Behalf Of jkells Sent:
> Tuesday, December 20, 2011 12:33 PM To: pgsql-general(at)postgresql(dot)org
> Subject: [GENERAL] General coding question
>
> General coding question. Can I insert a text string into a character
> varying column that contains a \ as is, meaning no escaping of the
> character or is this a bad practice?
>
> I.e: Column data
> ========== ====================================
> description SUBDIV LOT 13 & N1\2 LOT 14
>
> Thanks
>
> -----------------------------------------------------
>
> You never would actually store an "escaping" black-slash in the data.
> The need for an escape symbol occurs only during data entry and strictly
> depends on how you are entering data . As you have not provided those
> details further advice cannot be given.
>
> David J.
David Thanks
My problem comes from 6 records containing a backslash in several columns
out of a million plus rows in many different tables. I am testing some
replication software and have found that for these 6 records the
destination tables contain two backslashes after being replicated.
Source (master) record
I.e: Column data
========== ====================================
description SUBDIV LOT 13 & N1\2 LOT 14
Destination (slave) becomes the following
description SUBDIV LOT 13 & N1\\2 LOT 14
My question was more generic since I cant see why a '\' character cant be
used in a character string (I.e. storage path etc.. ). How would you
escape a \ character that is needed to be stored in a string and is there
anything special that one would have to do when retrieving it?
Regards,
From | Date | Subject | |
---|---|---|---|
Next Message | Jacques Lamothe | 2011-12-20 21:02:26 | Help with Multiple Cluster on same host |
Previous Message | Tom Lane | 2011-12-20 20:11:04 | Re: pg crash shortly after 9.1.1 -> 9.1.2 upgrade |