Registry / database / sqlite-jdbc

sqlite-jdbc

JSON →
library3.36.0javamavenunverified

A JDBC driver for SQLite, enabling Java applications to connect to and interact with SQLite databases.

<dependency> <groupId>org.xerial</groupId> <artifactId>sqlite-jdbc</artifactId> <version>3.36.0</version> </dependency>
INSTALL
IMPORT
SIG · SQLITE-JDBC
S
sqlite-jdbc
databasejavav3.36.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

JDBC
org.sqlite.JDBC

Minimal example connecting to an SQLite database using JDBC.

import org.sqlite.JDBC; import java.sql.Connection; import java.sql.DriverManager; public class Example { public static void main(String[] args) throws Exception { Connection conn = DriverManager.getConnection("jdbc:sqlite:sample.db"); System.out.println("Connected to SQLite"); } }
Debug
Known issues
gotchaSQLite JDBC bundles native libraries; ensure your platform is supported.
fix
Check the official documentation for supported platforms or use a pure Java fallback.
affects: *
Upgrade
Version history
3.36.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
16 hits · last 30 days
node
12
Meta
2
Amazon
1
OpenAI (training)
1
Resources
sqlite-jdbc — mvn dependency:get sqlite-jdbc · libregistry