Перейти к содержимому
Mineforgian

SQLib

The easiest way to store data for all your minecraft needs!

Загрузки
11K
Подписчики
32
Обновлён
21 марта 2025 г.
Лицензия
CC0-1.0

Опубликован 30 апреля 2023 г.

Maintenance PRs Welcome

ko-fi

SQLib

SQLib is the easiest way to store data for all your minecraft needs! A simple sql wrapper made with a focus on minecraft use cases.

Important Note:

This library is not a full-fledged sql wrapper, and does not provide full access to many sql features. The main focus of this library is to provide an easy and simple way to store data in your mods. If you are looking for a more advanced database I recommend taking a look at something like Nitrite.

Config

The mod generates a config on first time start that allows you to configure the database used by all mods relying on sqlib. The default database is a sqlite database running in the sqlib directory.

Datatypes

The datatypes can be accessed via JavaTpes, MinecraftTypes or the AdventureTypes classes. I tend to add support for new types as I run into them in my projects. If you would like one added, pleade make an issue!

Standard Minecraft Adventure
Byte Vec3i Key
Byte[] BlockPos Component
Bool ChunkPos
Short Text
Int Identifier
Float Sound
Double Json
Long NbtElement
String
Char
Date
Color
UUID
URI
URL

You can also add your own custom types as seen here:

Setup

In your build.gradle include:

repositories {
    maven { url "https://api.modrinth.com/maven" }
}

dependencies {
  modImplementation("maven.modrinth:sqlib:3.2.2")
}

Developer Usage

This example uses the built-in database managed by sqlib. for 99% of mods, using the built-in database is good, however further down are examples for custom database management.

// Do not call SQLib.getDatabase() in a early mod initializer. Doing so will likely crash your mod.
// Calling in or after the regular mod initializer is ok.
Database db = SQLib.getDatabase();

DataStore store = db.dataStore("myModId", "userdata");
        
DataContainer playerData = store.createDataContainer();
playerData.put(JavaTypes.STRING, "username", "CoolGuy123");
playerData.put(MinecraftTypes.BLOCKPOS, "home", new BlockPos(304, 62, 37));
playerData.put(MinecraftTypes.NBT, "nbt", new NbtCompound());

System.out.println(playerdata.get(JavaTypes.STRING, "username"));
System.out.println(playerdata.get(MinecraftTypes.BLOCKPOS, "home"));
System.out.println(playerdata.get(MinecraftTypes.NBT, "nbt"));

Custom Database Management

Postgres db = new Postgres("name", "192.168.1.69", "3306", "cooluser", "radman");
// OR
MySQL db = new MySQL("name", "192.168.1.69", "3306", "cooluser", "radman");
// OR
SQLite db = new SQLite("name", "some/dir");

Transaction Support

This approach will bach sql commands into one command for faster read/writes of large amounts of data.

DataStore store = db.dataStore("modId", "userdata");

DataContainer playerData = table.createDataContainer();
playerData.transaction().put("username", "CoolGuy123").put("home", new BlockPos(304, 62, 37).commit();

Custom Types

You can add a custom type by following the implentations in JavaTypes, MinecraftTypes and AdventureTypes. Then you can use it like any other native SQLib type.

// The SQLPrimitive is the base type to serialize to, and the two function lambdas are to serialize and deserialize from it
public static final SQLibType<JsonElement> JSON = new SQLibType<>(SQLPrimitive.STRING, JsonElement::toString, JsonParser::parseString);

// You can also extend a type like this:
public static final SQLibType<Identifier> IDENTIFIER = new SQLibType<>(SQLPrimitive.STRING, Identifier::toString, Identifier::tryParse);
public static final SQLibType<SoundEvent> SOUND = new SQLibType<>(IDENTIFIER, SoundEvent::getId, SoundEvent::of);

Центр версий

47 версий
  • Релиз19.3 МБ
  • Релиз20.2 МБ
  • Бета20.2 МБ
  • Бета20.2 МБ
  • Релиз20.2 МБ
  • Релиз20.2 МБ
  • Релиз20.0 МБ
  • Релиз20.0 МБ
  • Релиз20.0 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.5 МБ
  • Релиз19.4 МБ
  • Релиз19.4 МБ
  • Релиз19.4 МБ

Ченджлог

3.2.9Релиз1.21.9, 1.21.10, 1.21.11 · 21 марта 2025 г.
  • Allow local database paths to start with / on linux
3.2.8Релиз1.21.2, 1.21.3, 1.21.4 · 5 февраля 2025 г.
  • Re work the initial non minecraft api as it was flawed, all issues are hopefully addressed
3.2.7Бета1.21.2, 1.21.3, 1.21.4 · 5 февраля 2025 г.
  • fix silly crash
3.2.6Бета1.21.2, 1.21.3, 1.21.4 · 5 февраля 2025 г.
  • Add two new functions in SQLibConfig that allow for setting the config and default database directory, allowing for sqlib to be used in unsupported mod loads and even outside of minecraft
3.2.5Релиз1.21.2, 1.21.3, 1.21.4 · 21 декабря 2024 г.
  • Fix MySql/MariaDB/Postgres not loading correctly on velocity
3.2.4Релиз1.21.2, 1.21.3, 1.21.4 · 26 ноября 2024 г.
  • Add a new DataStore function getOrCreateDefaultContainer to cover the most common on create lambda
3.2.3Релиз1.21.1, 1.21.2, 1.21.3 · 23 октября 2024 г.
  • Update to 1.21.2
3.2.2Релиз1.20.6, 1.21, 1.21.1 · 20 сентября 2024 г.
  • Fix config not generating when using manual database creation

Комментарии

Загружаем…