Esempio n. 1
0
 public TableMetadataEntry(
     string tableName,
     List <AttributeEntry> structure,
     PrimaryKeyEntry primaryKey)
 {
     TableName  = tableName;
     Structure  = structure;
     PrimaryKey = primaryKey;
 }
Esempio n. 2
0
 public TableMetadataEntry(
     string tableName,
     List <AttributeEntry> structure,
     PrimaryKeyEntry primaryKey,
     List <UniqueKeyEntry> uniqueKeys,
     List <IndexFileEntry> indexFiles)
 {
     TableName  = tableName;
     Structure  = structure;
     PrimaryKey = primaryKey;
     IndexFiles = indexFiles;
 }