Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
1.12.2
Platforms
Supported environments
Creators
Details
Licensed Apache-2.0
Published 9 months ago
Updated 3 weeks ago
SQLiteĀ JDBC for Minecraft ā Maintained Fork
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.
š¦Ā What is it?
- A zeroāmodification repack of the official
org.xerial:sqlite-jdbcJAR plus minimal mod/plugin metadata. - Allows other mods or plugins to open
.db/.sqlitefiles through standard JDBC. - Does nothing on its ownāitās a library dependency.
Typical consumers: Dynmap, LuckPerms, Plan, Denizen, custom dataāstorage mods, etc.
š§Ā Why this fork?
- The original project went stale inĀ 2022.
- Keeps the driver current for new SQLite features and security fixes (CVEs).
- GitHub Actions publish a fresh ānightlyā JAR whenever Xerial releases a new version.
šŗļøĀ Compatibility
| 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 |
šĀ Installation / Dependency
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.
šĀ Quick Usage Example
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.
š”ļøĀ License
Underlying driver: Apacheā2.0
This repack: same license, no functional changes.
Need help? Open an issue or ping @Axionize on GitHub or Discord.


