静的パラメーターを使用した典型的なクロス集計クエリがあります。createStatement で問題なく動作します。代わりに、preparestatement を使用してクエリを実行したいと考えています。
String query = "SELECT * FROM crosstab(
'SELECT rowid, a_name, value
FROM test WHERE a_name = ''att2''
OR a_name = ''att3''
ORDER BY 1,2'
) AS ct(row_name text, category_1 text, category_2 text, category_3 text);";
PreparedStatement stat = conn.prepareStatement(query);
ResultSet rs = stat.getResultSet();
stat.executeQuery(query);
rs = stat.getResultSet();
while (rs.next()) {
//TODO
}
しかし、うまくいかないようです。
PSQLException - Can't use query methods that take a query string on a PreparedStatement が発生します。
私が見逃しているアイデアはありますか?