Re: ConnectionString

From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
To: "Sistemas C(dot)M(dot)P(dot)" <sistemascmp(at)redynet4(dot)com(dot)ar>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: ConnectionString
Date: 2007-01-09 03:25:19
Message-ID: c2d9e70e0701081925g46d97a61i6e7259ca28293143@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 1/5/07, Sistemas C.M.P. <sistemascmp(at)redynet4(dot)com(dot)ar> wrote:
> Alguien sabe como se especifica el Encoding en el ConnectionString de una
> conexion con pgOLEDB.?
> Estoy utilizando Visual Basic+ADO+PgOLEDB. y tengo problemas con algunos
> caracteres.
> si utilizo el comando Encoding en el servidor me dice que es UNICODE. Por
> lo tanto quiero forzar el Encoding en el string de conexion para asegurarme
> que tambien se conecte con UNICODE pero no se como hacerlo.
> Gracias!!

tomado del archivo README de PgOleDb-1.0.0.20

USAGE
In order to direct use to this provider, you must specify
"PostgreSQL", "PostgreSQL.1" or "PostgreSQL OLE DB Provider" as your
"provider".

PgOleDb supports the following connection attributes:
Provider - mandatory. Must be set to "PostgreSQL", "PostgreSQL.1" or
"PostgreSQL OLE DB Provider"
Data Source - server name or address
location - database name
User ID - PG user name to log in as
password - the password
timeout - how long to wait when establishing the initial connection

----

tal parece que no puedes, porque no creas una funcion que haga
"set client_encoding=UNICODE"? y la llamas cada vez que te conectes...

create function set_client_encoding() returns void as $$
set client_encoding='unicode';
$$ language 'sql';

--
Atentamente,
Jaime Casanova

"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Jaime Casanova 2007-01-09 04:09:56 Re: Ayuda con trigger
Previous Message Henry 2007-01-09 03:02:28 Re: ConnectionString