示例#1
0
文件: Index.cs 项目: calc33/PgTools
 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;
 }
示例#2
0
 internal Sequence(Db2SourceContext context, string owner, string schema, string objectName) : base(context, owner, schema, objectName, Schema.CollectionIndex.Objects)
 {
 }