
Up‑to‑date SQLite JDBC driver wrapped as a universal Forge/Fabric/Bukkit library for mods like Dynmap and Grim.
A maintenance fork of the dormant “SQLite JDBC for Minecraft” mod – now tracking the latest Xerial driver (3.51.0.0) and built automatically whenever a new upstream release drops.
org.xerial:sqlite-jdbc JAR plus minimal mod/plugin metadata. .db / .sqlite files through standard JDBC. Typical consumers: Dynmap, LuckPerms, Plan, Denizen, custom data‑storage mods, etc.
| Loader | Supported versions | Notes |
|---|---|---|
| Forge | 1.12.2 → latest | Universal JAR, no Mixins |
| NeoForge | 1.20.5 → latest | Universal JAR, no Mixins |
| Fabric | 1.14 → latest | Requires Fabric‑Loader ≥ 0.14 |
| Bukkit / Spigot / Paper | 1.0 → latest | Drop into /plugins |
Using the Modrinth Maven
repositories {
maven { url = "https://api.modrinth.com/maven" }
}
dependencies {
modImplementation("maven.modrinth:minecraft-sqlite-jdbc:3.51.0.0")
}
Or simply place the downloaded JAR into your mods (Forge/Fabric) or plugins (Spigot/Paper) folder.
Connection conn = DriverManager.getConnection("jdbc:sqlite:mydb.sqlite");
try (Statement st = conn.createStatement()) {
st.execute("CREATE TABLE IF NOT EXISTS foo(id INTEGER, bar TEXT)");
}
The driver self‑registers; no additional code needed.
Underlying driver: Apache‑2.0
This repack: same license, no functional changes.
Need help? Open an issue or ping @Axionize on GitHub or Discord.