java.sql.SQLException:无效的SQL语句或JDBC转义,终止'''未找到

时间:2015-04-30 14:08:53

标签: java sql-server jdbc

我收到以下错误。

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);

我的代码中的确切问题是什么?

0 个答案:

没有答案