Class: Db
Description
This method retrieves the description of a DATA-QWIK table from the DATA-QWIK dictionary.
Syntax
Db.getSchemaTable(String tableName)
Parameters
tableName |
A valid database table name. |
Returns
A single instance of the SchemaTable class.
When Became Available
v6.4
Example
// Retrieve the description of the DEP table
type SchemaTable st = Db.getSchemaTable("DEP")
// look at some of the properties (see SchemaTable)
write "description ",st.description,!
write "filer program ",st.userUpdated,!
write "definition modified at ",st.dateUpdated,!
write "definition modified by ",st.userUpdated,!