Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/08/2014, 05:56
Avatar de Pike
Pike
 
Fecha de Ingreso: agosto-2008
Ubicación: Por ahí
Mensajes: 251
Antigüedad: 16 años, 4 meses
Puntos: 1
Respuesta: At least one parameter to the current statement is uninitialized.

Estas son las consultas sobre las que hago los preparedStatement

Código HTML:
Ver original
  1. private static String introPiedraUbicacionSQL = ""
  2.        
  3.             + " INSERT INTO ubicaciones(id_piedra,fila,columna)"
  4.             + " VALUES (?, ?, ?)";
  5.     private static String introPiedraSQL =""
  6.  
  7.             + " INSERT INTO piedras(id_piedra,peso)"
  8.             + " VALUES(?,?)";

Muchas gracias por tu respuesta.