sqlite4java native library (osx aarch64)

Native library for sqlite4java (osx aarch64), includes SQLite

License

License

Categories

Categories

SQLite Data Databases
GroupId

GroupId

io.github.ganadist.sqlite4java
ArtifactId

ArtifactId

libsqlite4java-osx-aarch64
Last Version

Last Version

1.0.392
Release Date

Release Date

Type

Type

dylib
Description

Description

sqlite4java native library (osx aarch64)
Native library for sqlite4java (osx aarch64), includes SQLite
Project URL

Project URL

https://github.com/ganadist/sqlite4java
Project Organization

Project Organization

ALM Works
Source Code Management

Source Code Management

https://github.com/ganadist/sqlite4java/tree/m1_port

Download libsqlite4java-osx-aarch64

Dependencies

runtime (1)

Group / Artifact Type Version
com.almworks.sqlite4java : sqlite4java jar 1.0.392

test (1)

Group / Artifact Type Version
junit : junit jar [3.8,)

Project Modules

There are no modules declared in this project.

Download latest version:

Files for previous versions are available in the Downloads section.

Useful links:


About sqlite4java

Sqlite4java is a minimalistic, open-source Java wrapper for SQLite. SQLite is a free, compact, robust, embeddable SQL database engine. sqlite4java is built with the purpose to provide high-performance, low-garbage interface to SQLite for desktop Java applications.

Sqlite4java is not a JDBC driver. Access to the database is made through the custom interfaces of com.almworks.sqlite4java package. Tighter integration with SQLite offers better performance and features not available through JDBC interfaces.

Sqlite4java is built for use on Windows, Linux, Mac OS X and Android, although you can try to compile it on other platforms. Required JRE version is 1.5. SQLite is pre-compiled and distributed along with the Java classes as dynamic JNI libraries.

Sqlite4java is a stable library that we (ALM Works) use in our production applications. The API may not support some of the SQLite functions, but most functionality is covered. Feel free to request improvements or suggest patches.

Supported Platforms

  • Windows i386/x64
  • Linux i686/amd64
  • Mac OS X 10.5 or later (i686/x64)
  • Android x86/armv7/armv5

Features

  • Thin JNI-based wrapper for SQLite C Interface. Most of SQLite's user functions (not extender functions) are either already provided by the library or can be easily added.
  • Single-threaded model - each SQLite connection is confined to a single thread, all calls must come from that thread. Application may open several connections to the same database from different threads. Along with the Serializable isolation level from SQLite, this feature facilitates writing very clean and predictable code.
  • Bulk retrieval from SELECT statements, greatly improving speed and garbage rate via minimizing the number of JNI calls to step() and column...() methods. See SQLiteStatement.loadInts() for example.
  • Interruptible statements support allows to cancel a long-running query or update. See SQLiteConnection.interrupt().
  • Long array binding allows to represent a long[] Java array as an SQL table. Table lookup is optimized if you specify that the array is sorted and/or has unique values. See SQLiteLongArray.
  • Incremental BLOB I/O maps to sqlite3_blob... methods, which provide means to read/write portions of a large BLOB. See SQLiteBlob.
  • BLOBs as streams - you can bind parameter as an OutputStream and read column value as InputStream. See SQLiteStatement.bindStream() for example.
  • Job queue implementation lets you queue database jobs in a multi-threaded application, to be executed one-by-one in a dedicated database thread. See JobQueue.
  • SQL Profiler collects statistics on the executed SQL.
  • Backup API support lets you use SQLite's hot backup feature. See SQLiteConnection.initializeBackup().

License

sqlite4java is licensed under Apache License 2.0.

Contact [email protected] if you'd like to have it licensed under different terms.

Contributors

Versions

Version
1.0.392