DeveelDB
20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
|
Classes | |
class | BaseDataTable |
class | ColumnInfo |
Defines the metadata properties of a column within a table of a database. More... | |
class | CompositeTable |
class | ConstraintDeferrabilityExtensions |
class | ConstraintInfo |
class | ConstraintViolationException |
A database exception that represents a constraint violation. More... | |
class | FilterTable |
class | FunctionTable |
class | GeneratedTable |
interface | IMutableTable |
An interface that defines contracts to alter the contents of a table. More... | |
interface | IQueryTable |
interface | IRootTable |
Interface that is implemented by all root tables. More... | |
interface | ITable |
Defines the contract to access the data contained into a table of a database. More... | |
interface | ITableContainer |
A container for any system tables that are generated from information inside the database engine. More... | |
interface | ITableSource |
interface | ITableSourceComposite |
class | JoinedTable |
class | LimitedTable |
class | MutableTableExtensions |
class | NaturallyJoinedTable |
class | OuterTable |
class | QueryContextExtensions |
class | QueryExtensions |
class | RawTableInfo |
class | ReferenceTable |
class | RootTable |
class | Row |
A single row in a table of a database. More... | |
struct | RowId |
Defines the value of a ROWID object, that is a unique reference within a database system to a single row. More... | |
class | SimpleRowEnumerator |
class | SubsetColumnTable |
class | Table |
class | TableInfo |
Defines the metadata properties of a table existing within a database. More... | |
class | TableInternalExtensions |
class | TableManager |
class | TableQueryExtensions |
Provides a set of extension methods to ITable and IMutableTable objects. More... | |
class | TableSource |
class | TableSourceGC |
class | TemporaryTable |
class | UserContextTable |
A wrapper around a table that fires triggers on table events. More... | |
class | VersionedTableIndexList |
class | VirtualTable |
Enumerations | |
enum | ConstraintDeferrability : short { ConstraintDeferrability.InitiallyDeferred = 4, ConstraintDeferrability.InitiallyImmediate = 5, ConstraintDeferrability.NotDeferrable = 6 } |
The type of deferrance of a constraint. More... | |
enum | ConstraintType { ConstraintType.PrimaryKey = 1, ConstraintType.Unique = 2, ConstraintType.ForeignKey = 3, ConstraintType.Check = 4 } |
An enumeration of all the supported kinds of constraints within a table or a schema. More... | |
enum | ForeignKeyAction { ForeignKeyAction.NoAction = 0, ForeignKeyAction.Cascade = 1, ForeignKeyAction.SetNull = 2, ForeignKeyAction.SetDefault = 3 } |
Enumerates the foreign key referential trigger actions. More... | |
|
strong |
The type of deferrance of a constraint.
Definition at line 23 of file ConstraintDeferrability.cs.
|
strong |
An enumeration of all the supported kinds of constraints within a table or a schema.
Definition at line 24 of file ConstraintType.cs.
|
strong |
Enumerates the foreign key referential trigger actions.
Definition at line 23 of file ForeignKeyAction.cs.