예제 #1
0
        /**
         * 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);
            }
        }
예제 #2
0
        /**
         * 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);
            }
        }