Click or drag to resize

DatabaseGetSchemaInfo Method (String)

Gets a SchemaInfoCollection describing the specified table or view with SchemaInfo objects for each column. 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. You can use GetSchemaInfo(String, SchemaInfoType) for various schema object, including tables and views.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public SchemaInfoCollection GetSchemaInfo(
	string table
)

Parameters

table
Type: SystemString
The name of the table for which to obtain schema information.

Return Value

Type: SchemaInfoCollection
The schema information for the specified table or view.

Implements

IDatabaseGetSchemaInfo(String)
See Also