Package railo.runtime.db

Examples of railo.runtime.db.DataSourceManager.rollback()


       
        case ACTION_COMMIT:
          manager.commit();
        break;
        case ACTION_ROLLBACK:
          manager.rollback();
        break;
        case ACTION_SET_SAVEPOINT:
           ((DatasourceManagerImpl)manager).savepoint();
        break;
        }
View Full Code Here


    public void doCatch(Throwable t) throws Throwable {
      if(innerTag || ignore) throw t;
       
      DataSourceManager manager = pageContext.getDataSourceManager();
        try {
            manager.rollback();
        } catch (DatabaseException e) {
          //print.printST(e);
        }
        throw t;
    }
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.