SchemaFetchFlags Enumeration |
Definition of different flags to signal a database driver which elements to fetch from the schemas in a catalog.
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax [FlagsAttribute]
public enum SchemaFetchFlags
<FlagsAttribute>
Public Enumeration SchemaFetchFlags
Members
| Member name | Value | Description |
---|
| None | 0 |
Nothing.
|
| Tables | 1 |
Retrieve the schema information for all tables
|
| Views | 2 |
Retrieve the schema information for all views
|
| StoredProcedures | 4 |
Retrieve the schema information for all stored procedures
|
| CustomProperties | 8 |
Retrieve the schema information for all custom properties (extended properties) for tables,
table fields, views, view fields, and stored procedures.
|
See Also