Discussion:
Problem saving some characters
(too old to reply)
Eduardo S. Fontanetti
2004-06-21 13:04:21 UTC
Permalink
Hello,

I am trying to save a directory name on the Postgres,
but it is "cutting" some characters, and the result is
being diferent, and then, my app don't work properly.

Example:

I am trying to save "S:\directory\app" to a text field
on the Postgres.
When I do a Select, it returns "S:directoryapp".

It could be caused by the encoding type? I am using
the Latin2.

Somebody could help me? Whatever, it could be from the
ODBC driver, but I don't know how to test it.

Thanks!

Eduardo S. Fontanetti

______________________________________________________________________

Yahoo! Mail - agora com 100MB de espaço, anti-spam e antivírus grátis!
http://br.info.mail.yahoo.com/

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html
Jim Seymour
2004-06-21 13:26:05 UTC
Permalink
Post by Eduardo S. Fontanetti
Hello,
I am trying to save a directory name on the Postgres,
but it is "cutting" some characters, and the result is
being diferent, and then, my app don't work properly.
I am trying to save "S:\directory\app" to a text field
on the Postgres.
When I do a Select, it returns "S:directoryapp".
[snip]

That's because back-slashes are escape characters to pgsql. You need
to escape them (yes: escape the escape chars) in order to get them into
the db. This also means that anytime you may wish to search on these,
you'll have to properly escape the escapes. And so-on.

I believe if you thoroughly peruse the docs, you'll find this noted.

Jim

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html
Jouneau Luc
2004-06-21 13:26:15 UTC
Permalink
Hello,

'\' is an escape character, you should double it when you insert data :
insert into my_table values ('S:\\directory\\app');

I don't think it has much to do with database encoding.

Luc Jouneau
----- Original Message -----
From: "Eduardo S. Fontanetti" <***@yahoo.com.br>
To: <pgsql-***@postgresql.org>
Sent: Monday, June 21, 2004 3:04 PM
Subject: [ADMIN] Problem saving some characters
Post by Eduardo S. Fontanetti
Hello,
I am trying to save a directory name on the Postgres,
but it is "cutting" some characters, and the result is
being diferent, and then, my app don't work properly.
I am trying to save "S:\directory\app" to a text field
on the Postgres.
When I do a Select, it returns "S:directoryapp".
It could be caused by the encoding type? I am using
the Latin2.
Somebody could help me? Whatever, it could be from the
ODBC driver, but I don't know how to test it.
Thanks!
Eduardo S. Fontanetti
______________________________________________________________________
Yahoo! Mail - agora com 100MB de espaço, anti-spam e antivírus grátis!
http://br.info.mail.yahoo.com/
---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faqs/FAQ.html
---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

Loading...