RE: Desarrollo con Delphi y Postgres

From: "vhr" <vhr(at)relcat(dot)com(dot)ar>
To: <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: RE: Desarrollo con Delphi y Postgres
Date: 2007-01-03 14:10:25
Message-ID: 002f01c72f40$ebd05560$190aa8c0@vhrmovil
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola

Posiblemente te ayude poner en el evento afterConnect del componente
TZConnection el siguiente codigo

var
qry :TZReadOnlyQuery;
begin
qry := TZReadOnlyQuery.Create(nil);
With qry do try
Connection := Tu_TZConnection;
SQL.text := 'SET CLIENT_ENCODING TO ''latin1''' ;
Open;
finally
FreeAndNil( qry );
end;
end;

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message inf200272 2007-01-03 14:39:20 pgsql-es-ayuda unsubscribe
Previous Message Diego Ayala 2007-01-03 14:05:02 Re: exportar a un XML