自定义数据分页示例(24)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:35 点击:次
conn = JdbcUtil.getConn();
/* 第三步:定义sql语句 */
String sql = "insert into customer(name,gender,birthday,cellphone,Email,preference,type,Description)values(?,?,?,?,?,?,?,?)";
/* 第四步:根据sql语句获取预处理对象 */
pstmt = conn.prepareStatement(sql);
/* 第五步:为占位符赋值 */
int index = 1;
pstmt.setObject(index++, entity.getName());
pstmt.setObject(index++, entity.getGender());
相关新闻>>
- 发表评论
-
- 最新评论 更多>>