69

我正在尝试将CLOBs 插入数据库(请参阅相关问题)。我无法完全弄清楚出了什么问题。我有一个要插入到表中的大约 85 个 clob 的列表。即使只插入我得到的第一个 clob ORA-00911: invalid character。我不知道如何PreparedStatement在执行之前将语句从语句中取出,所以我不能 100% 确定它是正确的,但如果我做对了,那么它应该看起来像这样:

insert all
  into domo_queries values ('select 
substr(to_char(max_data),1,4) as year,
substr(to_char(max_data),5,6) as month,
max_data
from dss_fin_user.acq_dashboard_src_load_success
where source = ''CHQ PeopleSoft FS''')
select * from dual;

最终,这个insert all语句会有很多into',这就是为什么我只是不做一个常规insert语句。我没有在其中看到无效字符,是吗?(哦,当我在我的 sql 开发人员工具中运行上面的代码时,它运行良好。)如果我删除 中的分号PreparedStatement,它会引发ORA-00933: SQL command not properly ended错误。

无论如何,这是我执行查询的代码(以及上面示例的变量值)。

public ResultSet executeQuery(String connection, String query, QueryParameter... params) throws DataException, SQLException {
  // query at this point = "insert all
                          //into domo_queries values (?)
                          //select * from dual;"
  Connection conn = ConnectionPool.getInstance().get(connection);
  PreparedStatement pstmt = conn.prepareStatement(query);
  for (int i = 1; i <= params.length; i++) {
    QueryParameter param = params[i - 1];
    switch (param.getType()) { //The type in the example is QueryParameter.CLOB
      case QueryParameter.CLOB:
        Clob clob = CLOB.createTemporary(conn, false, oracle.sql.CLOB.DURATION_SESSION);
        clob.setString(i, "'" + param.getValue() + "'");
        //the value of param.getValue() at this point is:
        /*
         * select 
         * substr(to_char(max_data),1,4) as year,
         * substr(to_char(max_data),5,6) as month,
         * max_data
         * from dss_fin_user.acq_dashboard_src_load_success
         * where source = ''CHQ PeopleSoft FS''
         */
        pstmt.setClob(i, clob);
        break;
      case QueryParameter.STRING:
        pstmt.setString(i, "'" + param.getValue() + "'");
        break;
    }
  }
  ResultSet rs = pstmt.executeQuery(); //Obviously, this is where the error is thrown
  conn.commit();
  ConnectionPool.getInstance().release(conn);
  return rs;
}

有什么我只是想念的东西吗?

4

3 回答 3

167

如果您完全按照向我们展示的那样使用字符串文字,那么问题出;在末尾的字符上。您可能不会将其包含在 JDBC 调用的查询字符串中。

由于您只插入一行,INSERT因此即使插入多行,常规也应该没问题。无论如何,使用批处理语句可能更有效。不需要INSERT ALL。此外,您不需要临时 clob 和所有这些。您可以将您的方法简化为这样的(假设我的参数正确):

String query1 = "select substr(to_char(max_data),1,4) as year, " + 
  "substr(to_char(max_data),5,6) as month, max_data " +
  "from dss_fin_user.acq_dashboard_src_load_success " + 
  "where source = 'CHQ PeopleSoft FS'";

String query2 = ".....";

String sql = "insert into domo_queries (clob_column) values (?)";
PreparedStatement pstmt = con.prepareStatement(sql);
StringReader reader = new StringReader(query1);
pstmt.setCharacterStream(1, reader, query1.length());
pstmt.addBatch();

reader = new StringReader(query2);
pstmt.setCharacterStream(1, reader, query2.length());
pstmt.addBatch();

pstmt.executeBatch();   
con.commit();
于 2012-05-23T21:54:27.053 回答
6

在我的脑海中,你能尝试对字符串文字使用“q”运算符吗

就像是

insert all
  into domo_queries values (q'[select 
substr(to_char(max_data),1,4) as year,
substr(to_char(max_data),5,6) as month,
max_data
from dss_fin_user.acq_dashboard_src_load_success
where source = 'CHQ PeopleSoft FS']')
select * from dual;

请注意,谓词的单引号不会被转义,并且字符串位于 q'[...]' 之间。

于 2012-05-23T22:11:00.980 回答
0

原因之一可能是任何一个表列的名称中都有下划线(_)。这被 JDBC 视为无效字符。通过 ALTER 命令重命名列并更改您的代码 SQL,这将修复。

于 2019-11-21T10:48:17.713 回答