Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/03/2014, 11:27
Avatar de rgf1987
rgf1987
 
Fecha de Ingreso: diciembre-2012
Ubicación: Asturias
Mensajes: 269
Antigüedad: 12 años
Puntos: 22
Respuesta: SQL error no se que hacer

Cita:
Iniciado por manunores Ver Mensaje
me pones esto de respuesta Syntax error or access violation message from server: "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1"
Te dice que tienes un error de sintaxis en la sentencia SQL.

Si te fijas te falta un paréntesis de cierre al final, para cerrar el VALUES. Añadaselo así:

Código SQL:
Ver original
  1. estado.executeUpdate("INSERT INTO agenda VALUES ('','"+camponuevonombre.getText()+"', '"+camponuevotelefono.getText()+"')");

Un saludo.