1 24 25 package com.mckoi.database; 26 27 32 33 public interface MutableTableDataSource extends TableDataSource { 34 35 45 int addRow(RowData row_data); 46 47 56 void removeRow(int row_index); 57 58 68 int updateRow(int row_index, RowData row_data); 69 70 82 void flushIndexChanges(); 83 84 101 void constraintIntegrityCheck(); 102 103 110 MasterTableJournal getJournal(); 111 112 118 void dispose(); 119 120 128 void addRootLock(); 129 130 133 void removeRootLock(); 134 135 } 136 | Popular Tags |