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();
}