Package org.apache.derby.iapi.store.access

Examples of org.apache.derby.iapi.store.access.TransactionController.commit()


          getLogFactoryProperties(tc);
        }
        finally
        {
          if (tc != null)
            tc.commit();
        }
      }

      // checkpoint will start its own internal transaction on the current
      // context.
View Full Code Here


        {
          if (se.getMessageId().equals(SQLState.LOCK_TIMEOUT))
          {
            if (nestedTC != null)
            {
            nestedTC.commit();
            nestedTC.destroy();
            nestedTC = null;
            }
            // if we couldn't do this with a nested xaction, retry with
            // parent-- we need to wait this time!
View Full Code Here

      if (sync)
      {
        if (commitflag == NON_XA)
        {
          // regular commit
          tc.commit();
        }
        else
        {
          // This may be a xa_commit, check overloaded commitflag.
View Full Code Here

      TransactionController tc = rtc.getTransaction();

      if (xactProperties != null)
            {
        rawtran.setup(tc);
        tc.commit();
      }

            rawtran.setDefaultLockingPolicy(system_default_locking_policy);

      tc.commit();
View Full Code Here

        tc.commit();
      }

            rawtran.setDefaultLockingPolicy(system_default_locking_policy);

      tc.commit();

      return tc;
        }
        return rtc.getTransaction();
    }
View Full Code Here

      if (sync)
      {
        if (commitflag == NON_XA)
        {
          // regular commit
          tc.commit();
        }
        else
        {
          // This may be a xa_commit, check overloaded commitflag.
View Full Code Here

    // file only if we upgraded it to be stored in the transactional
    // property set.
    if (upgradeID != null)
      startParams.remove(DataDictionary.DATABASE_ID);

    tc.commit();
    tc.destroy();

    return databaseID;
  }
View Full Code Here

    throws StandardException {

    TransactionController tc = af.getTransaction(
                    ContextService.getFactory().getCurrentContextManager());
    Properties dbProps = tc.getProperties();
    tc.commit();
    tc.destroy();

    return dbProps;
  }
View Full Code Here

            //remove it from the list of temp tables
            allDeclaredGlobalTempTables.remove(i);
        }

        tc.commit();
    }

  /**
    Reset the connection before it is returned (indirectly) by
    a PooledConnection object. See EmbeddedConnection.
View Full Code Here

            if (sync)
            {
                if (commitflag == NON_XA)
                {
                    // regular commit
                    tc.commit();
                }
                else
                {
                    // This may be a xa_commit, check overloaded commitflag.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.