81

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

select * from customers where name=@name and city = @city
4

5 に答える 5

82

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);
于 2010-02-22T09:40:58.000 に答える
35

大きなフレームワークを含めないようにするために、簡単な自家製のクラスでうまくいくと思います。

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

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

于 2013-12-17T21:10:46.230 に答える
25

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));
}
于 2010-02-22T09:55:15.103 に答える
1

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

于 2010-02-22T09:42:32.897 に答える
1

プレーンバニラJDBCは、名前付きパラメーターをサポートしていません。

DB2を使用している場合は、DB2クラスを直接使用します。

  1. PreparedStatementオブジェクトでの名前付きパラメーターマーカーの使用
  2. CallableStatementオブジェクトでの名前付きパラメーターマーカーの使用
于 2011-10-29T17:29:13.647 に答える