この質問は、Using query_to_xml in PostgreSQL with prepared statementsと非常によく似ていますが、そこの解決策は私の場合は機能していないようです。実際には非常に奇妙な状況です。私はうまく動作する次のクエリがあります。JDBCのPostgresSQL query_to_xml PreparedStatement
String sql = "select query_to_xml('select col1,col2,col3 FROM table where col4 = '||?||' and col5 = '||?||'', true,true,'');";
と準備文のように:私は、クエリに別の文字列パラメータを追加する場合
PreparedStatement ps0 = conn.prepareStatement(sql);
ps0.setInt(1, a);
ps0.setInt(2, b);
ResultSet rs0 = ps0.executeQuery();
は、しかし、それはエラーをスローします。例えば;私は言葉 "パーセント" としての私の文字列 "c" を定義していた
org.postgresql.util.PSQLException: ERROR: column "percent" does not exist
:
String sql = "select query_to_xml('select col1,col2,col3 FROM table where col4 = '||?||' and col5 = '||?||' and col6 = '||?||'', true,true,'');";
PreparedStatement ps0 = conn.prepareStatement(sql);
ps0.setInt(1, a);
ps0.setInt(2, b);
ps0.setString(3, c);
ResultSet rs0 = ps0.executeQuery();
は、次のエラーをスローします。この問題は実際にはクエリに渡す文字列なので、私は仮定します。私はまた、単語%をwhere句にコーディングして、それを準備文のパラメータとして次のようには含まないようにしました。
String sql = "select query_to_xml('select col1,col2,col3 FROM table where col4 = '||?||' and col5 = '||?||' and col6 = 'percent'', true,true,'');";
ただし、代わりに次のエラーが発生します。私は解決策を推測している
org.postgresql.util.PSQLException: ERROR: syntax error at or near "percent"
は、おそらくダウン追加または削除する必要があり、単一または二重引用符のどこかにあるが、私はそれを見ているようだ傾けます。すべてのポインタは、ありがとう、ありがとう。
ありがとう@RealSkeptic、それは魅力的でした。説明もありがとうございました。 – tasslebear