Example #1
0
 public UniqueConstraint()
 {
     AllowPageLocks          = true;
     AllowRowLocks           = true;
     FileGroup               = "PRIMARY";
     FillFactor              = 0;
     IgnoreDupKey            = false;
     IndexType               = string.Empty;
     IsClustered             = false;
     IsDisabled              = false;
     IsPadded                = true;
     UniqueConstraintColumns = new DataObjectLookup <UniqueConstraint, UniqueConstraintColumn>(this);
 }
Example #2
0
 public PrimaryKey()
 {
     AllowPageLocks    = true;
     AllowRowLocks     = true;
     FileGroup         = "PRIMARY";
     FillFactor        = 0;
     IgnoreDupKey      = false;
     IndexType         = string.Empty;
     IsClustered       = false;
     IsDisabled        = false;
     IsPadded          = true;
     PrimaryKeyColumns = new DataObjectLookup <PrimaryKey, PrimaryKeyColumn>(this);
 }
Example #3
0
 public Catalog()
 {
     Schemas                      = new DataObjectLookup <Catalog, Schema>(this);
     CollationName                = string.Empty;
     CompatibilityLevel           = 100;
     CreateDate                   = DateTime.Now.ToString("u");
     IsAnsiNullDefaultOn          = true;
     IsAnsiNullsOn                = true;
     IsAnsiPaddingOn              = true;
     IsAnsiWarningsOn             = true;
     IsArithabortOn               = true;
     IsAutoCloseOn                = false;
     IsAutoCreateStatsOn          = true;
     IsAutoShrinkOn               = false;
     IsAutoUpdateStatsAsyncOn     = false;
     IsAutoUpdateStatsOn          = true;
     IsCleanlyShutdown            = true;
     IsConcatNullYieldsNullOn     = false;
     IsCursorCloseOnCommitOn      = false;
     IsDateCorrelationOn          = false;
     IsDbChainingOn               = false;
     IsFulltextEnabled            = false;
     IsInStandby                  = false;
     IsLocalCursorDefault         = false;
     IsMasterKeyEncryptedByServer = false;
     IsNumericRoundabortOn        = false;
     IsParameterizationForced     = false;
     IsQuotedIdentifierOn         = true;
     IsReadOnly                   = false;
     IsRecursiveTriggersOn        = false;
     IsSupplementalLoggingEnabled = false;
     IsTrustworthyOn              = true;
     PageVerifyOption             = 2;
     PageVerifyOptionDescription  = "CHECKSUM";
     RecoveryModel                = 3;
     RecoveryModelDescription     = "SIMPLE";
     State                 = 0;
     StateDescription      = "ONLINE";
     UserAccess            = 0;
     UserAccessDescription = "MULTI_USER";
 }
Example #4
0
 public ForeignKey()
 {
     DeleteActionDescription = "NO_ACTION";
     UpdateActionDescription = "NO_ACTION";
     ForeignKeyColumns       = new DataObjectLookup <ForeignKey, ForeignKeyColumn>(this);
 }
Example #5
0
 public Server()
 {
     DataContext = null;
     Catalogs    = new DataObjectLookup <Server, Catalog>(this);
 }