Click or drag to resize

DatabaseGetSchemaInfo Method (String, SchemaInfoType)

Gets a SchemaInfoCollection describing the specified database object with SchemaInfo objects for each column or input parameter. Note that schema information is cached on demand and per-DatabaseID. If the specified table does not exist then an empty (but not null) SchemaInfoCollection will be returned and you can test ObjectExists to determine whether or not the object exists.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public SchemaInfoCollection GetSchemaInfo(
	string name,
	SchemaInfoType schemaType
)

Parameters

name
Type: SystemString
The name of the schema object for which to obtain schema information.
schemaType
Type: NetQuarrySchemaInfoType
The type of object.

Return Value

Type: SchemaInfoCollection
The schema information for the specified object.

Implements

IDatabaseGetSchemaInfo(String, SchemaInfoType)
See Also