Cita:
Iniciado por manunores 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 originalestado.executeUpdate("INSERT INTO agenda VALUES ('','"+camponuevonombre.getText()+"', '"+camponuevotelefono.getText()+"')");
Un saludo.