IDatabaseGetSchemaInfo 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 SchemaInfoCollection GetSchemaInfo(
string name,
SchemaInfoType schemaType
)
Function GetSchemaInfo (
name As String,
schemaType As SchemaInfoType
) As SchemaInfoCollection
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:
SchemaInfoCollectionThe schema information for the specified object.
See Also