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:

.database ```sql
SELECT * FROM users WHERE id = $me
```

Arguments

Check the Command/Arguments section if you have a problem.

Examples

Basic Query

Run a simple SQL query:

.database SELECT * FROM users

Query with Placeholders

Use placeholders for dynamic data:

.database SELECT * FROM messages WHERE author_id = $me

Formatted Query

Use code blocks for better readability:

.database ```sql
SELECT * FROM messages
WHERE channel_id = $channel
AND guild_id = $guild
```

Subcommands

Plan

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

Usage

.database plan

Aliases

  • tables

  • schema

  • list

  • view

Example

.database plan

Annexes

Last updated