Re: SELECT pg_client_encoding()

From: Juan Martínez <jeugenio(at)umcervantes(dot)cl>
To: "Miguel Ortega" <mortega(at)tc(dot)com(dot)ve>, pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: SELECT pg_client_encoding()
Date: 2006-06-12 15:14:50
Message-ID: 50342.190.44.89.196.1150125290.squirrel@correo.umcervantes.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

El Lun, 12 de Junio de 2006, 5:26 pm, Alvaro Herrera escribió:
> Miguel Ortega escribió:
>> Estaba intentando cambiar el client_encoding de PostgreSQL pero cada vez
>> que ejecuto select pg_client_encoding() siempre me arroja UTF8 (si la
>> version de PostgreSQL = 8.1) o UNICODE (si es 8.0). He intentado
>> agregar la variable de entorno PGCLIENTENCODING, he intentado hacer SET
>> CLIENT_ENCODING = LATIN1 y he intentado cambiar el postgresql.conf pero
>> nada....
>
> Aca funciona ...

Tengo la sospecha que el amigo intenta hacerlo desde alguna aplicacion o
algo por estilo distinto a psql. Eso tiene que ver con las variables de
sesion si no me equivoco?

> alvherre=# select pg_client_encoding();
> pg_client_encoding
> --------------------
> LATIN1
> (1 fila)
>
> alvherre=# set client_encoding to 'utf8';
> SET
> alvherre=# select pg_client_encoding();
> pg_client_encoding
> --------------------
> UTF8
> (1 fila)
>
> alvherre=# set client_encoding to 'latin1';
> SET
> alvherre=# select pg_client_encoding();
> pg_client_encoding
> --------------------
> LATIN1
> (1 fila)

--
Juan Martinez
Depto. Inf.
UMC

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Miguel Ortega 2006-06-12 15:34:53 SELECT pg_client_encoding()
Previous Message leonardo.amezquita 2006-06-12 15:05:32 Conexion por ODBC desde solaris