dbName

The name of the MySQL database schema to use for McMMO data storage.

This property specifies the database schema (database name) within the MySQL server that will contain all McMMO plugin tables and data. The database must exist before the plugin can establish a connection.

Naming Conventions:

  • Should follow MySQL identifier rules (alphanumeric, underscores, hyphens)

  • Typically descriptive of the server or plugin usage

  • Case sensitivity depends on the underlying operating system

Common Examples:

  • "minecraft_mmo": Descriptive default name

  • "mcmmo_production": Environment-specific naming

  • "server_rpg": Server-specific branding

  • "mmo_data": Simple, functional naming

Default Value: "minecraft_mmo"

Configuration Key: "database.name"

Database Requirements:

  • Database must exist before plugin initialization

  • Plugin user must have appropriate permissions on this database

  • Database should use UTF-8 encoding for proper international character support

Since

1.0.0