This project is forked from already existing project Aikar IDB. This fork include some of the patches and including H2, Postgres SQL support and other stuff.
Some of the changes includes from other forks such as from:
This is my JDBC Database Wrapper, with the intent on providing a clean intuitive API, for access to a JDBC database,
IDB handles connections, query, execution, result fetching and data return for all the common access operations without the boilerplate of making all of the JDBC API's yourself.
Most Database operations can be completed in a single API call.
Built currently on top of Hikari Connection Pool.
Version: 1.1-SNAPSHOT
(UNOFFICIAL/ FORKED PROJECT)
Getting Started: Using IDB
API Documentation: IDB API
Real World Examples: Examples
If this library has helped you, please consider donating as a way of saying thanks
Get off your dinosaur and get on this rocket ship!
Dinosaurs have been dead for a long time, so get off it before you start to smell.
TODO
See Issues section.
Join #aikar on Spigot IRC - irc.spi.gt to discuss.
Or Code With Aikar Discord.
- ACF - Powerful Java Command Framework
- TaskChain - Powerful context control to dispatch tasks Async, then access the result sync for API usage. Concurrency controls too.
- Minecraft Timings - Add Timings to your plugin in a safe way that works on all Bukkit platforms (CraftBukkit - no timings, Spigot - Timings v1, Paper and Paper forks - Timings v2)
As with all my other public projects
IDB (c) Daniel Ennis (Aikar) 2014-2018.
IDB is licensed MIT. See LICENSE
To other to build the jar file of this project you much run this command gradle clean shadowJar
and then locate the jar in core/build/libs
This repo is available on a public maven repo server
repositories {
maven {
url = uri("https://repo.voop.lv/repository/vooplvPublic/")
}
}
dependencies {
api("co.aikar.idb:core:1.1-SNAPSHOT")
//or
implementation("co.aikar.idb:core:1.1-SNAPSHOT")
}
<repositories>
<repository>
<id>vooplvPublic</id>
<url>"https://repo.voop.lv/repository/vooplvPublic/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>co.aikar.idb</groupId>
<artifactId>core</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
</dependencies>