The official website says the library supports SQLite 3. Android has SQLite. Is it possible to use JavaLite ActiveJDBC in an Android Studio project?
The site says that coninction is done as follows:
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 the library to the SQLite database?
source share