eclipse - Setting up sqlite with java (import org.sqlite.SQLite cannot be resolved) -


i'm getting error

the import org.sqlite cannot resolved.

this first time setting sqlite java in eclipse. did add sqlite.jar file right clicking project>properties , clicking add external jar. not sure going on import error. import error coming class personnel.

package frontend;  import org.sqlite.sqlite; import backend.sqlitedb; import business.person;  public class personnel { static sqlitedb db;      public static void main(string[] args) {       db = new sqlitedb();      //db.createpersonneltable();     person person = new person("jason", 22, "2123 north st.", 66000.0);     db.addperson(person);        }  } 

add external jar should resolve it. give try clean build. if not resolve issue,make sure entry of sqlite.jar exist on .class path file


Comments

Popular posts from this blog

javascript - JS causing window size to be bigger than necessary - Dropdown bug -

How to mention the localhost in android -

php - Calling a template part from a post -