create_database
Create new databases in CockroachDB by specifying a database name. This tool simplifies database management for agentic applications and LLMs, delivering success or error messages upon execution.
Instructions
Enable the creation of new databases.
Args: database_name (str): Name of the database to create.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database_name": {
"title": "Database Name",
"type": "string"
}
},
"required": [
"database_name"
],
"title": "create_databaseArguments",
"type": "object"
}