Database

Advanced database command for executing SQL queries and managing database plans.

Description

The database command allows the bot owner to run SQL queries directly on the bot's database. This can be useful for testing, debugging, or managing data within the server.

Command Pattern

In the Discord server where you invited the bot, use the following command pattern in a channel accessible by the bot.

.database <query>

For example:

.database SELECT * FROM users

Automatic Replacement

Certain placeholders in the SQL query are automatically replaced:

  • $guild -> Guild ID

  • $channel -> Channel ID

  • $me -> Author ID

Mentions (e.g., <@123456789012345678>) are replaced with their respective IDs, and table names are automatically quoted.

Code Blocks

You can also use code blocks to format your SQL query:

Arguments

Examples

Basic Query

Run a simple SQL query:

Query with Placeholders

Use placeholders for dynamic data:

Formatted Query

Use code blocks for better readability:

Subcommands

Plan

The plan subcommand shows the database schema, including the table names, column types, and default values.

Usage

Aliases

  • tables

  • schema

  • list

  • view

Example

Annexes

Last updated

Was this helpful?