Skip to content

Commit d07bc98

Browse files
committed
Update api-docs.txt
1 parent 5074eeb commit d07bc98

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

pointblank/data/api-docs.txt

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,16 @@ Validate(data: 'FrameT | Any', tbl_name: 'str | None' = None, label: 'str | None
289289
- Vietnamese (`"vi"`)
290290
- Indonesian (`"id"`)
291291
- Ukrainian (`"uk"`)
292+
- Bulgarian (`"bg"`)
293+
- Croatian (`"hr"`)
294+
- Estonian (`"et"`)
295+
- Hungarian (`"hu"`)
296+
- Irish (`"ga"`)
297+
- Latvian (`"lv"`)
298+
- Lithuanian (`"lt"`)
299+
- Maltese (`"mt"`)
300+
- Slovak (`"sk"`)
301+
- Slovenian (`"sl"`)
292302
- Hebrew (`"he"`)
293303
- Thai (`"th"`)
294304
- Persian (`"fa"`)
@@ -11068,6 +11078,36 @@ connect_to_table(connection_string: 'str') -> 'Any'
1106811078
pip install 'ibis-framework[duckdb]' # for DuckDB
1106911079
pip install 'ibis-framework[postgres]' # for PostgreSQL
1107011080
```
11081+
See Also
11082+
--------
11083+
print_database_tables : List all available tables in a database for discovery
11084+
11085+
11086+
print_database_tables(connection_string: 'str') -> 'list[str]'
11087+
11088+
List all tables in a database from a connection string.
11089+
11090+
The `print_database_tables()` function connects to a database and returns a list of all
11091+
available tables. This is particularly useful for discovering what tables exist in a database
11092+
before connecting to a specific table with `connect_to_table(). The function automatically
11093+
filters out temporary Ibis tables (memtables) to show only user tables. It supports all database
11094+
backends available through Ibis, including DuckDB, SQLite, PostgreSQL, MySQL, BigQuery, and
11095+
Snowflake.
11096+
11097+
Parameters
11098+
----------
11099+
connection_string
11100+
A database connection string WITHOUT the ::table_name suffix. Example:
11101+
`"duckdb:///path/to/database.ddb"`.
11102+
11103+
Returns
11104+
-------
11105+
list[str]
11106+
List of table names, excluding temporary Ibis tables.
11107+
11108+
See Also
11109+
--------
11110+
connect_to_table : Connect to a database table with full connection string documentation
1107111111

1107211112

1107311113

0 commit comments

Comments
 (0)