skript-orm

Addon skript-orm 1.0.0

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

heyhey123

New Member
Nov 11, 2025
4
0
1
heyhey123 submitted a new resource:

skript-orm - An ORM plugin for Skript, aimed at providing a user-friendly & high performance interface for Skript

Markdown (GitHub flavored):
# skript-orm

An ORM for Skript: describe a table once, then read and write rows with Skript syntax instead of
writing SQL.

## What a script looks like

```sk
on load:
    create a connection to database "MySQL" with properties:
        url: "jdbc:mysql://localhost:3306/mydb"
        username: "root"
        password: "123456"

    register a database table "users":
        id: bigint, primary key, auto increment, not null
        name: string(64), not null
        age: int...

Read more about this resource...