-
/**
-
* Copyright: Copyright (c) 2005-2005
-
* Company: JavaResearch(http://www.javaresearch.org)
-
*/
-
package
org.javaresearch.jerch;
-
-
import
java.sql.PreparedStatement;
-
import
java.sql.SQLException;
-
-
/**
-
* 设置PreparedStatement的参数的接口定义。
-
* 最后更新日期:2005年3月28日
-
* @author cherami
-
*/
-
public
interface
PreparedStatementSetter
{
- /**
-
* 设置PreparedStatement所需的全部参数。
-
* @param ps PreparedStatement
-
* @throws SQLException
-
*/
- publicvoid setValues(PreparedStatement ps) throwsSQLException;
- }
-
- jt.query("select address from owners where first_name = ? and last_name = ?",
new PreparedStatementSetter(){
public void setValues(PreparedStatement ps) throws SQLException {
ps.setString(1, "Jeff");
ps.setString(2, "Black");
}
},
new RowMapper(){
public Object mapRow(ResultSet rs, int rowNum) throws SQLException {
return rs.getString("address");
}
}));
大盘预测
国富论
posted on 2007-09-10 10:54
华梦行 阅读(4014)
评论(0) 编辑 收藏 所属分类:
Spring