Interested in improving this site? Please check the To Do page.
mysql.getTableNames
Retrieve a list of table names from the active database
Syntax
mysql.getTableNames(dbid)
Params
A database connection ID
Returns
A Frontier list containing a list of tables in the currently selected database
Examples
dialog.alert(getTableNames(id))
ยป {"names"}
Notes
This is implemented as a script using “SHOW TABLES” as the query.