Package dao

Examples of dao.DAOException


            ps.executeUpdate();//update les valeurs entrees
           
            ps.close();

        } catch (SQLException ex) {
            throw new DAOException("problème insertion du sportif à l'épreuve individuelle", ex);

        } finally {
            closeConnection(conn);
        }
View Full Code Here


            rs.close();
            stmt.close();
            return sportifs;
        }
        catch (SQLException ex) {
            throw new DAOException("problème recuperation sportif à l'épreuve individuelle", ex);

        } finally {
            closeConnection(conn);
        }
View Full Code Here

TOP

Related Classes of dao.DAOException

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.