SqlMeta
class SqlMeta : Obj
SqlMeta provides access to database meta-data
Product version of database as "major.minor"
List the tables in the database
Version of of connection driver to database as free-form string
Product version of database as free-form string
Version of of connection driver to database as "major.minor"
Max number of chars in column name or null if no known limit
Max number of chars in table name or null if no known limit
Name of connection driver to database
Does the specified table exist in the database?
Get a column meta-data for for the specified table as a prototype row instance
Name of database product
Str driverName()
Name of connection driver to database
Version driverVersion()
Version of of connection driver to database as "major.minor"
Str driverVersionStr()
Version of of connection driver to database as free-form string
Int? maxColName()
Max number of chars in column name or null if no known limit
Int? maxTableName()
Max number of chars in table name or null if no known limit
Str productName()
Name of database product
Version productVersion()
Product version of database as "major.minor"
Str productVersionStr()
Product version of database as free-form string
Bool tableExists(Str tableName)
Does the specified table exist in the database?
Row tableRow(Str tableName)
Get a column meta-data for for the specified table as a prototype row instance.
Str[] tables()
List the tables in the database.