Official web site says that library supports SQLite 3. Android has SQLite. Is it possible to use JavaLite's ActiveJDBC in Android Studio project?
Website says that conenction is made like this:
Base.open("com.mysql.jdbc.Driver", "jdbc:mysql://localhost/test", "the_user", "the_password");
Employee.findAll().dump();
Base.close();
In the case of Android, how to connect library to SQLite database?