I need to create and manage sqlite3 DB in Java on ARM Linux. I would prefer a library that can be easily used on both ARM Linux and x86 Windows (32 or 64 bit, for development and testing) and which support SQL queries. I know sqlitejdbc and sqlite-jdbc , but it seems that their distributions do not support ARM Linux. There is also sqljet , which is pure java (without native code), but uses a dedicated API instead of SQL. Essentially, I'm looking at something that is equivalent to the python sqlite3 module. He exists?
source share