Is there a java sqlite3 library for ARM Linux?

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?

+4
source share
2 answers

I just looked at sqlite4java, which seems to fit the bill: SQL and pure Java.

http://code.google.com/p/sqlite4java/

In any case, you can look here to find what you need:

http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers

but sqlite4java seems like the most active project.

+3
source

AFAIR, sqlitejdbc can work in pure java mode (without the need for built-in libraries).

You can also use the Xerial driver with the system set -Dsqlite.purejava=true .

+1
source

Source: https://habr.com/ru/post/1397038/


All Articles