Package org.glite.ce.commonj.db

Examples of org.glite.ce.commonj.db.DatabaseException


            updatePreparedStatement.executeUpdate();
            connection.commit();
            logger.info("set startUpTime in the database");
        } catch (Exception e) {
            logger.warn("Problem to update the startUpTime in the database");
            throw new DatabaseException("Problem to update the startUpTime in the database");
        } finally {
            if (updatePreparedStatement != null) {
                try {
                    updatePreparedStatement.close();
                } catch (SQLException sqle1) {
View Full Code Here

TOP

Related Classes of org.glite.ce.commonj.db.DatabaseException

Copyright © 2018 www.massapicom. 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.