clients - Search results

2024-02-16 05:45:15 | Re: Reporting UnicodeEncodeError info on arbitrary data sent to PG with psycopg3 (Karl O. Pinc)

client_encoding=auto, or otherwise set a specific client encoding, the connection defaults to setting

2024-02-14 18:28:57 | Re: Reporting UnicodeEncodeError info on arbitrary data sent to PG with psycopg3 (Daniele Varrazzo)

client_encoding? Can you try to get the result of `SHOW client_encoding` from psycopg

2024-02-14 15:42:03 | Re: Reporting UnicodeEncodeError info on arbitrary data sent to PG with psycopg3 (Karl O. Pinc)

client_encoding; client_encoding ----------------- UTF8 (1 row) kop_latin1=> show server_encoding; server_encoding ----------------- LATIN1

2024-02-14 14:30:33 | Re: Reporting UnicodeEncodeError info on arbitrary data sent to PG with psycopg3 (Daniele Varrazzo)

client_encoding to 'latin1'") >>> dumper = conn.adapters.get_dumper(str, psycopg.adapt.PyFormat.TEXT)(str, conn

2024-02-14 01:37:32 | Reporting UnicodeEncodeError info on arbitrary data sent to PG with psycopg3 (Karl O. Pinc)

Client side encoding is UTF-8. create database test_latin1 template template0 encoding 'LATIN1' locale