Is it possible to access a SQLite database file outside of an executable JAR?
问题 I have an application that I deploy as an executable JAR file. Originally, this JAR file would communicate with a MySQL database but recently I have decided I want to go with SQLite instead. However, while testing I found that I could not access my SQLite database file when running my application from the JAR file. I'm using the JDBC driver from the following website: http://zentus.com/sqlitejdbc/index.html Is there a workaround I have to do? The driver works great while testing in my Eclipse