|
Database sessions can generate the following exceptions: 1. If you have an invalid URL to the database file, then this exception happens (e.g. my url was jdbc:sqlite://f://websave//vqa.db) 2. when closing the session. I had just typed one statement: select * from systables and then executed it. It gave me an error about "no such table". After that I closed the session and got the following error: Workaround: All JDBC drivers need to be 1.6 or greater. Database sessions are not compatible with Java 1.5 JDBC drivers.
|