Connection.getSchema

Asks the underlying data source for a list of database objects. This is the function that lets applications ask the different providers about all their database objects (tables, views, procedures, etc). The set of database objects that are retrieved are given by the 2 parameters of this function: schema, which specifies the specific schema required, and params, which is a list of parameters that can be used to give more detail about the objects to be returned. The list of parameters is specific to each schema type.

class Connection
getSchema
(
GdaConnectionSchema schema
,)

Parameters

schema GdaConnectionSchema

database schema to get.

params ParameterList

parameter list.

Return Value

Type: DataModel

a GdaDataModel containing the data required. The caller is responsible of freeing the returned model.

Meta