1 24 25 package com.mckoi.database; 26 27 34 35 public interface RawDiagnosticTable { 36 37 40 public final static int UNCOMMITTED = 1, 41 COMMITTED_ADDED = 2, 42 COMMITTED_REMOVED = 3, 43 DELETED = 4; 45 48 public final static int RECORD_STATE_ERROR = 0; 49 50 52 57 int physicalRecordCount(); 58 59 63 DataTableDef getDataTableDef(); 64 65 70 int recordState(int record_index); 71 72 75 int recordSize(int record_index); 76 77 81 TObject getCellContents(int column, int record_index); 82 83 88 String recordMiscInformation(int record_index); 89 90 } 91 | Popular Tags |