podbc_get_tables
Retrieve a list of tables and their details from a specified database schema using SQLAlchemy connectivity. Automatically defaults to the connection schema if none is provided.
Instructions
Retrieve and return a list containing information about tables in specified schema, if empty uses connection default
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Schema | No | ||
url | No |
Input Schema (JSON Schema)
{
"properties": {
"Schema": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Schema"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Url"
}
},
"title": "podbc_get_tablesArguments",
"type": "object"
}