DBSchema Constructors
An object schema that is used to manage database objects (e.g., DBTable objects or their descendants).| Name | Parameters | Description |
|---|---|---|
| DBSchema() | none | Initializes a new instance of the DBSchema class with the default settings. |
| DBSchema(DBStoredProcedure[]) | storedProcedures | Initializes a new instance of the DBSchema class with the specified settings. |
| DBSchema(DBTable[], DBTable[], DBStoredProcedure[]) | tables, views, storedProcedures | Initializes a new instance of the DBSchema class with the specified settings. |
| DBSchema(DBTable[], DBTable[]) | tables, views | Initializes a new instance of the DBSchema class. |
See Also