Package com.comprainsumos.modelo

Examples of com.comprainsumos.modelo.Cotizacion


        if (codigo == 0) {
            throw new SQLException("No hay elemento clave de la clase insumos");
        }
        ResultSet rs = null;
        PreparedStatement pst = null;
        Cotizacion cotizacion = null;
        try {
            pst = con.prepareStatement("select * from cotizacion where codigo = ?");
            pst.setInt(1, codigo);
            rs = pst.executeQuery();
            while (rs.next()) {
                cotizacion = cotizacion.load(rs);
            }
        } finally {
            if (rs != null) {
                rs.close();
            }
View Full Code Here

TOP

Related Classes of com.comprainsumos.modelo.Cotizacion

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.