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