我收到以下错误。
java.sql.SQLException: Invalid SQL statement or JDBC escape, terminating ''' not found.
at net.sourceforge.jtds.jdbc.SQLParser.parse(SQLParser.java:1155)
at net.sourceforge.jtds.jdbc.SQLParser.parse(SQLParser.java:156)
at net.sourceforge.jtds.jdbc.JtdsStatement.executeImpl(JtdsStatement.java:684)
at net.sourceforge.jtds.jdbc.JtdsStatement.execute(JtdsStatement.java:1160)
我的代码如下:
context.Createtbl = null;
String header = ((String)globalMap.get("row1.HeaderString"));
context.Createtbl="CREATE TABLE ["+context.tblnamewithindex+"] (["+header+"] VARCHAR(max));";
System.out.println(context.Createtbl);
我的代码中的确切问题是什么?