ORA-00903:PreparedStatement上的表名无效

时间:2012-05-31 22:06:41

标签: java sql oracle jdbc

我有一个方法,它将使用一个QueryParameters列表为预准备语句执行查询。 HelperConnectionQueryParameter只是小型的java bean,根据您在此处看到的get,应该是不言自明的。我尝试使用select * from dual使用,而不是select * from ?,其中QueryParameter是STRING类型,值为dual。但是,我收到java.sql.SQLSyntaxErrorException: ORA-00903: invalid table name错误。我的代码和输出如下。怎么了?

public static ResultSet executeQuery(HelperConnection helperConnection, String query, QueryParameter... params) throws SQLException {
  System.out.println("The connection is: " + helperConnection.getJdbcURL());
  System.out.println("The query is: " + query);
  if (params.length > 0) {
    System.out.println("The QueryParameters are:");
    System.out.println("\t" + StringHelper.splitBy(StringHelper.newline + "\t", params));
  }
  Connection conn = helperConnection.createOracleConnection();
  PreparedStatement pstmt = conn.prepareStatement(query);
  for (int i = 1; i <= params.length; i++) {
    QueryParameter param = params[i - 1];
    switch (param.getType()) {
      //Other cases here
      case QueryParameter.STRING:
        pstmt.setString(i, param.getValue());
        break;
    }
  }

  ResultSet rs = pstmt.executeQuery();
  conn.commit();
  return rs;
}

输出:

The connection is: //.....My connection
The query is: select * from ?
The QueryParameters are:
    String - dual

1 个答案:

答案 0 :(得分:6)

我认为PreparedStatement参数仅适用于 - 不适用于SQL查询的部分内容,例如表格。可能有一些数据库支持您要实现的目标,但我不相信Oracle就是其中之一。您需要直接包含表名 - 当然还要谨慎。