コード例 #1
0
 public TableMetadataEntry(
     string tableName,
     List <AttributeEntry> structure,
     PrimaryKeyEntry primaryKey)
 {
     TableName  = tableName;
     Structure  = structure;
     PrimaryKey = primaryKey;
 }
コード例 #2
0
ファイル: MetadataEntries.cs プロジェクト: ClaudiuUG/ISGBD
 public TableMetadataEntry(
     string tableName,
     List <AttributeEntry> structure,
     PrimaryKeyEntry primaryKey,
     List <UniqueKeyEntry> uniqueKeys,
     List <IndexFileEntry> indexFiles)
 {
     TableName  = tableName;
     Structure  = structure;
     PrimaryKey = primaryKey;
     IndexFiles = indexFiles;
 }