JDBC中的命名参数

时间:2010-02-22 09:37:44

标签: java jdbc named-parameters

JDBC中是否有命名参数而不是位置参数,如下面的ADO.NET查询中的@name@city

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

5 个答案:

答案 0 :(得分:65)

JDBC不支持命名参数。除非您一定要使用纯JDBC(这会导致痛苦,让我告诉您),我建议使用Springs Excellent JDBCTemplate,它可以在没有整个IoC容器的情况下使用。

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

答案 1 :(得分:25)

为了避免包含大型框架,我认为一个简单的自制类可以做到这一点。

处理命名参数的类示例:

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 :(得分:22)

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));
}

答案 3 :(得分:1)

您不能在JDBC本身中使用命名参数。您可以尝试使用Spring框架,因为它有一些允许在查询中使用命名参数的扩展。

答案 4 :(得分:-1)

Plain vanilla JDBC不支持命名参数。

如果您正在使用DB2,那么直接使用DB2类:

  1. Using named parameter markers with PreparedStatement objects
  2. Using named parameter markers with CallableStatement objects