JDBC drivers do not have a traditional installer; they are libraries added to your project's build environment.
JDBC Driver version: 3.72.0 SQLite JDBC library version: 3.45.1 (or similar) SUCCESS: sqlite-jdbc-3.72 is working correctly.
Yes. Version 3.72 requires Java 8 or higher, but runs perfectly on Java 17 and 21 LTS.
This program creates a new SQLite database file called "test.db", creates a table called "test", and then queries the table to print out its contents.
| Feature | Description | |---------|-------------| | | No platform-specific setup | | In-memory DB | jdbc:sqlite::memory: for temporary databases | | Foreign Keys | Enabled by default (PRAGMA foreign_keys=ON) | | WAL Mode | Write-Ahead Logging support for better concurrency | | Backup API | Online backup of databases | | Java 8+ | Compatible with Java 8, 11, 17, 21+ | | Prepared Statements | Full support with batching | | Full-Text Search (FTS5) | Built-in FTS5 extension enabled |
: If you are using a Maven-based project, add the following snippet to your pom.xml to automate the download:
import java.sql.*;
JDBC drivers do not have a traditional installer; they are libraries added to your project's build environment.
JDBC Driver version: 3.72.0 SQLite JDBC library version: 3.45.1 (or similar) SUCCESS: sqlite-jdbc-3.72 is working correctly.
Yes. Version 3.72 requires Java 8 or higher, but runs perfectly on Java 17 and 21 LTS.
This program creates a new SQLite database file called "test.db", creates a table called "test", and then queries the table to print out its contents.
| Feature | Description | |---------|-------------| | | No platform-specific setup | | In-memory DB | jdbc:sqlite::memory: for temporary databases | | Foreign Keys | Enabled by default (PRAGMA foreign_keys=ON) | | WAL Mode | Write-Ahead Logging support for better concurrency | | Backup API | Online backup of databases | | Java 8+ | Compatible with Java 8, 11, 17, 21+ | | Prepared Statements | Full support with batching | | Full-Text Search (FTS5) | Built-in FTS5 extension enabled |
: If you are using a Maven-based project, add the following snippet to your pom.xml to automate the download:
import java.sql.*;