get_db_table_list
Retrieve a list of all table names within a specified database using this tool, defaulting to the current database if none is provided. Simplifies database metadata management and query preparation.
Instructions
[Function Description]: Get a list of all table names in the specified database.
[Parameter Content]:
db_name (string) [Optional] - Target database name, defaults to the current database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_name | No |
Input Schema (JSON Schema)
{
"properties": {
"db_name": {
"default": null,
"title": "Db Name",
"type": "string"
}
},
"title": "get_db_table_list_toolArguments",
"type": "object"
}