dbListTables |
Top Previous Next |
Syntax POINTER = dbListTables(pConnection as POINTER) Description Returns a linked list containing the names of all of the tables in a database. Parameters pConneciton - A database pointer returned by dbConnect or dbConnectDSN Return value A pointer to a linked list of table names or NULL if the database is empty. Remarks The pointer returned is a standard Emergence BASIC linked list type. It must be deleted with ListRemoveAll when you are finished enumerating the table names. Each element of the list is a pointer to a string containing a table name. Example usage REM List all tables, and their columns |