以下のADO.NETクエリに@name
、のような位置パラメータではなく、JDBCに名前付きパラメータがありますか?@city
select * from customers where name=@name and city = @city
以下のADO.NETクエリに@name
、のような位置パラメータではなく、JDBCに名前付きパラメータがありますか?@city
select * from customers where name=@name and city = @city
JDBCは名前付きパラメーターをサポートしていません。プレーンなJDBCを使用する必要がない限り(これは苦痛を引き起こします)、IoCコンテナ全体なしで使用できるSpringsExcellenceJDBCTemplateを使用することをお勧めします。
NamedParameterJDBCTemplateは、名前付きパラメーターをサポートしています。次のように使用できます。
NamedParameterJdbcTemplate jdbcTemplate = new NamedParameterJdbcTemplate(dataSource);
MapSqlParameterSource paramSource = new MapSqlParameterSource();
paramSource.addValue("name", name);
paramSource.addValue("city", city);
jdbcTemplate.queryForRowSet("SELECT * FROM customers WHERE name = :name AND city = :city", paramSource);
大きなフレームワークを含めないようにするために、簡単な自家製のクラスでうまくいくと思います。
名前付きパラメーターを処理するクラスの例:
public class NamedParamStatement {
public NamedParamStatement(Connection conn, String sql) throws SQLException {
int pos;
while((pos = sql.indexOf(":")) != -1) {
int end = sql.substring(pos).indexOf(" ");
if (end == -1)
end = sql.length();
else
end += pos;
fields.add(sql.substring(pos+1,end));
sql = sql.substring(0, pos) + "?" + sql.substring(end);
}
prepStmt = conn.prepareStatement(sql);
}
public PreparedStatement getPreparedStatement() {
return prepStmt;
}
public ResultSet executeQuery() throws SQLException {
return prepStmt.executeQuery();
}
public void close() throws SQLException {
prepStmt.close();
}
public void setInt(String name, int value) throws SQLException {
prepStmt.setInt(getIndex(name), value);
}
private int getIndex(String name) {
return fields.indexOf(name)+1;
}
private PreparedStatement prepStmt;
private List<String> fields = new ArrayList<String>();
}
クラスの呼び出し例:
String sql;
sql = "SELECT id, Name, Age, TS FROM TestTable WHERE Age < :age OR id = :id";
NamedParamStatement stmt = new NamedParamStatement(conn, sql);
stmt.setInt("age", 35);
stmt.setInt("id", 2);
ResultSet rs = stmt.executeQuery();
上記の簡単な例では、名前付きパラメーターの2回の使用は処理されないことに注意してください。また、引用符内の:記号の使用も処理しません。
Vanilla JDBCは、CallableStatement
(eg setString("name", name)
)内の名前付きパラメーターのみをサポートします。それでも、基盤となるストアドプロシージャの実装はそれをサポートする必要があると思います。
名前付きパラメーターの使用方法の例:
//uss Sybase ASE sysobjects table...adjust for your RDBMS
stmt = conn.prepareCall("create procedure p1 (@id int = null, @name varchar(255) = null) as begin "
+ "if @id is not null "
+ "select * from sysobjects where id = @id "
+ "else if @name is not null "
+ "select * from sysobjects where name = @name "
+ " end");
stmt.execute();
//call the proc using one of the 2 optional params
stmt = conn.prepareCall("{call p1 ?}");
stmt.setInt("@id", 10);
ResultSet rs = stmt.executeQuery();
while (rs.next())
{
System.out.println(rs.getString(1));
}
//use the other optional param
stmt = conn.prepareCall("{call p1 ?}");
stmt.setString("@name", "sysprocedures");
rs = stmt.executeQuery();
while (rs.next())
{
System.out.println(rs.getString(1));
}
JDBC自体で名前付きパラメーターを使用することはできません。クエリで名前付きパラメーターを使用できる拡張機能がいくつかあるため、Springフレームワークを使用してみることができます。
プレーンバニラJDBCは、名前付きパラメーターをサポートしていません。
DB2を使用している場合は、DB2クラスを直接使用します。