/** * Method declaration * * * @param table * @param row * * @throws Exception */ public void addTransactionInsert(Table table, object[] row) { if (!bAutoCommit) { Transaction t = new Transaction(false, table, row); tTransaction.Add(t); } }
/** * Method declaration * * * @param table * @param row * * @throws Exception */ public void addTransactionDelete(Table table, object[] row) { if (!bAutoCommit) { Transaction t = new Transaction(true, table, row); tTransaction.Add(t); } }