是否有一个名为JDBC中,而不是那些位置参数,比如@name
,@city
在下面的ADO.NET查询?
select * from customers where name=@name and city = @city
是否有一个名为JDBC中,而不是那些位置参数,比如@name
,@city
在下面的ADO.NET查询?
select * from customers where name=@name and city = @city
I think Oracle JDBC driver supports calling regular SQL statements with named parameters when using CallableStatement
。
Answers:
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);
spring-jdbc
模块依赖于spring-core
,spring-framework
和spring-tx
。 NamedParameterJdbcTemplate
需要进行一些重写才能使用独立版本。 repo1.maven.org/maven2/org/springframework/spring-jdbc/…–
为了避免包含大型框架,我认为一个简单的自制类可以解决问题。
处理命名参数的类的示例:
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();
请注意,上面的简单示例不会两次使用命名参数。它也不使用引号内的:符号处理。
(?!\\B'[^']*)(:\\w+)(?![^']*'\\B)
对我来说更好。
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));
}
您不能在JDBC本身中使用命名参数。您可以尝试使用Spring框架,因为它具有一些扩展名,这些扩展名允许在查询中使用命名参数。