Ver Mensaje Individual
  #1 (permalink)  
Antiguo 01/06/2005, 01:34
CarlaMedina
 
Fecha de Ingreso: mayo-2005
Ubicación: España
Mensajes: 279
Antigüedad: 19 años, 8 meses
Puntos: 2
Exclamación Error mySQL access violation

Al intentar ejecutar una página en JSP y con Sql, me da el error:

javax.servlet.ServletException: 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"

El código donde da el error es:

String creat="create table "+ titulo +" ( "+ usuario+" VARCHAR(10), PRIMARY KEY "+ usuario +" )" ;
miStat.executeUpdate(creat);

//donde titulo y usuario son string.

Gracias