class

SqlMeta

class SqlMeta : Obj

SqlMeta provides access to database meta-data

methods productVersion

Product version of database as "major.minor"

tables

List the tables in the database

driverVersionStr

Version of of connection driver to database as free-form string

productVersionStr

Product version of database as free-form string

driverVersion

Version of of connection driver to database as "major.minor"

maxColName

Max number of chars in column name or null if no known limit

maxTableName

Max number of chars in table name or null if no known limit

driverName

Name of connection driver to database

tableExists

Does the specified table exist in the database?

tableRow

Get a column meta-data for for the specified table as a prototype row instance

productName

Name of database product

driverName Str driverName()

Name of connection driver to database

driverVersion Version driverVersion()

Version of of connection driver to database as "major.minor"

driverVersionStr Str driverVersionStr()

Version of of connection driver to database as free-form string

maxColName Int? maxColName()

Max number of chars in column name or null if no known limit

maxTableName Int? maxTableName()

Max number of chars in table name or null if no known limit

productName Str productName()

Name of database product

productVersion Version productVersion()

Product version of database as "major.minor"

productVersionStr Str productVersionStr()

Product version of database as free-form string

tableExists Bool tableExists(Str tableName)

Does the specified table exist in the database?

tableRow Row tableRow(Str tableName)

Get a column meta-data for for the specified table as a prototype row instance.

tables Str[] tables()

List the tables in the database.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST