Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/05/2009, 14:23
ivdrako
 
Fecha de Ingreso: mayo-2009
Mensajes: 16
Antigüedad: 15 años, 5 meses
Puntos: 0
Respuesta: Como insertar renglones??

pues ya lo pude resolver, dejo la respuesta por si alguien la necesita:

Código:
MiConexion conexion = new MiConexion();
                conexion.abrirConexion();
                String sql = "insert into compra (id , cliente , producto , monto) VALUES ("+id+","+ cliente +",'"+ producto+"',"+solucion+");";
                Statement stmt = conexion.con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
                int a = stmt.executeUpdate(sql);
                sql = "select * from compra where cliente=" +cliente+";";
                ResultSet resultado = stmt.executeQuery(sql);