标签:span str ted public city cas cte demo upd
package cn.itcast.datasource.jdbctemplate;
import cn.itcast.utils.JDBCUtils;
import org.springframework.jdbc.core.JdbcTemplate;
import javax.sql.DataSource;
/**
* @author newcityman
* @date 2019/8/17 - 0:51
* JdbcTemplate入门
*/
public class JdbcTemplateDemo01 {
public static void main(String[] args) {
// 1、导入相应jar包
// 2、创建JDBCTemplate对象
JdbcTemplate template = new JdbcTemplate(JDBCUtils.getDataSource()) ;
// 3、调用方法
String sql ="update account set balance=? where id=?";
int i = template.update(sql, 8000, 4);
if (i>0){
System.out.println("数据修改成功");
}else{
System.out.println("数据修改失败");
}
}
}
标签:span str ted public city cas cte demo upd
原文地址:https://www.cnblogs.com/newcityboy/p/11367109.html