eclipse - How do I add/use an embedded SQLite in a Java project? -


i'm trying add embedded database application, have no clue begin. far i've found should download sqlite-jdbc driver , add .jar project. there i'm kind of lost, there tutorials me started or helpful tips?

also, i'm using eclipse ide, if there's within there simplify process, feel free add well!

you want dependency management here? read on maven (very easy), write maven pom.xml file , load eclipse way. eclipse , netbeans understand maven now. no need learn eclipse-specific way since maven work in netbeans eclipse , simple run on command line too.

based on search.maven.org says, dependency in maven added standard pom file latest:

<dependency>     <groupid>org.xerial</groupid>     <artifactid>sqlite-jdbc</artifactid>     <version>3.7.15-m1</version> </dependency> 

Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -