Hi,
Please don't double post. Here my answer again (in case somebody else searches for this):
Sorry, you can not use "CIPHER=AES" in the ODBC connection string. This is only allowed in the JDBC database URL.
You would need to set the database name to "GE04;CIPHER=AES", but I'm not sure if this is possible or how to do it.
Or, as a workaround, you could start the PgServer with an undocumented feature "key" that allows mapping of one database URL to another:
java org.h2.tools.Server -pg -key GE04 "~/temp/ge04;cipher=aes"
I will need to document this as follows:
To map an ODBC database name to a different JDBC database name, use the option "-key" when starting the server. Please note only one mapping is allowed. The following will map the ODBC database named "TEST" to the database URL "jdbc:h2:~/data/test;cipher=aes":
java org.h2.tools.Server -pg -key TEST "~/data/test;cipher=aes"
Regards,
Thomas