Postgresql – Client Encoding in psycopg3 missing, yet gives error
So I see in psycopg 2, there is a set_client_encoding('UTF8') function. In the psycopg 3 documentation it reads: client_encoding is gone Here I create the connection: conn = psycopg.connect(conninfo, row_factory = dict_row, autocommit = autocommit, client_encoding="UTF8") But then when I…