db_table_list
| Definition: | sequence s = db_table_list() |
| Description: | Return a sequence of all the table names in the current database. Each element of s is a sequence of characters containing the name of a table. |
| pwa/p2js: | Not supported |
| Example: |
sequence names
names = db_table_list()
for i=1 to length(names) do
puts(1, names[i] & '\n')
end for
|
| See Also: | db_create_table |