Beginner In Sqlite
I haven't used SQLite before and I am looking if I could use it. I am puzzled a bit. For example there does not seem to be a jdbc driver associated with SQLite that comes from th
Solution 1:
You can download the JDBC Driver from here: http://www.zentus.com/sqlitejdbc/
The sqlite3.exe is only needed when you work with your command line on your windows pc. You don't need it when you want to access a database with Java.
From Java you have to:
- download the JDBC Driver
- add it to your project/classpath
- call Class.forName("org.sqlite.JDBC");
- now you can use it like in your first post
Post a Comment for "Beginner In Sqlite"