Keep connection open over multiple JNI calls
I have a dll (which I use via the JNI) which opens a connection to a database and gets some data. I need to get data every 10 minutes. However, actually connecting to the database is very slow.
Is it possible to create the connection once and reuse it, or do I have to connect every time.
NOTE: It is not possible for me to connect to this database through Java directly.

