-
Notifications
You must be signed in to change notification settings - Fork 0
Storage
Justin_SGD edited this page Feb 1, 2026
·
6 revisions
JuByteCase stores data in a database. Supported dialects:
- H2Portable (default, file-based)
- MySQL/MariaDB
All settings are located in database.yml.
Database:
dialectName: 'H2Portable' # H2Portable | MySQL | MariaDB (depends on driver)
Host: 'localhost'
Port: 3306
User: 'root'
Password: 'Test'
useSSL: false
databaseName: 'CaseOpening'- Keep
dialectName: 'H2Portable' - No external database server needed
- Data is stored in
plugins/CaseOpening/datafolder/
- Set
dialectNameto a supported SQL dialect (usuallyMySQL) - Set host, port, user, password, and databaseName
- Optional: set
useSSL: trueif your server requires SSL/TLS
- player_case: UUID, case name, amount
- case_location: all CaseBlocks placed in the world
-
case_log (optional): win history (only if
CaseLog: trueinconfig.yml)