You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For H2DB, I need to pass extra arguments to the JVM to define the default timezone of the database: -Duser.timezone="America/Toronto"
Looking at the code, I don't see a proper way to pass this arguments to the JVM. Would it be possible to add an optional parameters to the connect(). Something like jvm_args ?
The text was updated successfully, but these errors were encountered:
Hi @ikus060, I agree. There is #116 but it needs some polishing. Further on I'm not sure whether it would be even nicer to have a more general jvm_args param and additionally a jvm_properties param to allow for providing a python dict with the Java system properties like this
@baztian#116 Is what I was looking for. But at the same time, I see it's would not be possible to connect to different database with different arguments.
For the look of it, I would need to start different instance of jpype for each database. I'm not sure jaydebeapi is supporting this usecase.
For H2DB, I need to pass extra arguments to the JVM to define the default timezone of the database:
-Duser.timezone="America/Toronto"
Looking at the code, I don't see a proper way to pass this arguments to the JVM. Would it be possible to add an optional parameters to the connect(). Something like jvm_args ?
The text was updated successfully, but these errors were encountered: