database_tableNames
Lists tables for a database.
Target
Signature
1database_tableNames(dbname::string)Lists tables for a database.
database_tableNames is a global callable that can be used wherever an expression is valid. database_tableNames is part of datasource access. Prefer bind values for visitor input, inspect errors during writes, and keep display escaping separate from SQL handling.
Parameters
dbname- Required value of type
string. Supplydbnamepositionally unless the signature shows a keyword form.
Examples
Basic call
1database_tableNames('contacts')The example shows the call shape; use bind values and checked errors for visitor-supplied data.