DBInfo
Retrieve database metadata for a given datasource.
Component Signature
Attributes
type
string
true
Type of metadata to retrieve. One of: columns
, dbnames
, tables
, foreignkeys
, index
, procedures
, or version
.
name
string
true
Name of the variable to which the result will be assigned. Required.
datasource
string
false
Name of the datasource to check metadata on. If not provided, the default datasource will be used.
table
string
false
Table name for which to retrieve metadata. Required for columns
, foreignkeys
, and index
types.
pattern
string
false
dbname
string
false
filter
string
false
This is a string value that must match a table type in your database implementation. Each database is different. Some common filter types are:
TABLE - This is the default value and will return only tables.
VIEW - This will return only views.
SYSTEM TABLE - This will return only system tables.
GLOBAL TEMPORARY - This will return only global temporary tables.
LOCAL TEMPORARY - This will return only local temporary tables.
ALIAS - This will return only aliases.
SYNONYM - This will return only synonyms.
username
string
false
password
string
false
Examples
Last updated