我有一个方法,它将使用一个QueryParameters列表为预准备语句执行查询。 HelperConnection
和QueryParameter
只是小型的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
答案 0 :(得分:6)
我认为PreparedStatement
参数仅适用于值 - 不适用于SQL查询的部分内容,例如表格。可能有一些数据库支持您要实现的目标,但我不相信Oracle就是其中之一。您需要直接包含表名 - 当然还要谨慎。