Flectone Logo FlectonePulse

Database

Storage location for important player information

Information

You can use environment variables in the database fields, for example ${VALUE}


⚙️ Setting

Path config.yml → database
database:
  ignore_existing_driver: false
  type: "H2"
  name: "flectonepulse"
  host: "127.0.0.1"
  port: "3306"
  user: "root"
  password: "1234"
  parameters: "?autoReconnect=true&useSSL=false&useUnicode=true&characterEncoding=UTF-8"
  prefix: ""

ignore_existing_driver

Whether to download the database library even if it already exists on the server.

Information

This can solve issues where other plugins use an outdated library and FlectonePulse cannot start correctly.

type

The type of database used; currently supported types are:

TypeExplanation
SQLiteLocal, stored as a file
MySQLServer-based, requires connection
MariaDBServer-based, requires connection
H2Local, stored as a file
PostgreSQLServer-based, requires connection

name

Database name

host

Address of the server where the database is located

port

Connection port for the database on the server

user

Username to be used for connecting to the database

password

Password for connecting to the database

parameters

Database connection parameters

prefix

Warning

If you change the prefix, the tables will be new and previous player data will not be used.

Prefix for database tables; if empty, the fp_ prefix will be used.

Last updated on

Edit on GitHub

On this page

Authors of page