heyhey123 submitted a new resource:
skript-orm - An ORM plugin for Skript, aimed at providing a user-friendly & high performance interface for Skript
Read more about this 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...