Re: A problem with odbc connection

Clemens Ladisch <[email protected]> Thu, 13 Sep 2018 09:55:32 +0200
Newsgroups gmane.comp.db.postgresql.odbc
Message-ID <[email protected]>
Ivan Neshta wrote:
> [unixODBC]ERROR: Unsupported startup parameter: geqo

"geqo" is not one of the ODBC driver options:
https://odbc.postgresql.org/docs/config-opt.html

You can use the "Pqopt" ODBC option to specify the "options" libpq
option to specify the "-c" server command-line option to specify the
"geqo" server parameter:
https://www.postgresql.org/docs/current/static/libpq-connect.html#LIBPQ-CONNECT-OPTIONS

Alternatively, you can use the "ConnSettings" ODBC option to execute
an SQL SET command:

  ConnSettings = set geqo=off


Regards,
Clemens