web-dev-qa-db-ja.com

JDBCの名前付きパラメーター

以下のADO.NETクエリの@name@cityのように、JDBCには定位置パラメーターではなく名前付きパラメーターがありますか?

select * from customers where name=@name and city = @city
67
Fakrudeen

JDBCは名前付きパラメーターをサポートしていません。単純なJDBCを使用することに縛られない限り(これにより痛みが生じます)、IoCコンテナー全体なしで使用できるSprings Excellent JDBCTemplateを使用することをお勧めします。

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);
66
Malax

大きなフレームワークを含めることを避けるために、単純な自家製のクラスがトリックを行うことができると思います。

名前付きパラメーターを処理するクラスの例:

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回使用しても処理されないことに注意してください。また、引用符内の:記号の使用も処理しません。

27
InvulgoSoft

Vanilla JDBCはCallableStatement内の名前付きパラメーター(例: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));
}
23
skaffman

JDBC自体で名前付きパラメーターを使用することはできません。クエリで名前付きパラメーターを使用できるようにする拡張機能があるため、Springフレームワークを使用してみてください。

1
Ivan Vrtarić