Beispiel #1
0
 public Index(Db2SourceContext context, string owner, string schema, string indexName, string tableSchema, string tableName, string[] columns, string definition) : base(context, owner, schema, indexName, Schema.CollectionIndex.Indexes)
 {
     //_schema = context.RequireSchema(schema);
     //_name = indexName;
     _tableSchema = tableSchema;
     _tableName   = tableName;
     Columns      = columns;
     //_definition = definition;
 }
Beispiel #2
0
 internal Sequence(Db2SourceContext context, string owner, string schema, string objectName) : base(context, owner, schema, objectName, Schema.CollectionIndex.Objects)
 {
 }