JDBC--使用statement接口实现更新数据


package jdbc.util;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;

public class DbUtil {

	//数据库地址
	private static String dbUrl="jdbc:mysql://localhost:3306/mybatis_db";
	//用户名
	private static String dbUserName="root";
	//密码
	private static String dbPassword="#######################################################";
	//驱动名称
	private static String jdbcName="com.mysql.jdbc.Driver";
	/**
	 * 获取数据库连接
	 * @return
	 * @throws Exception
	 */
	
	public Connection getCon()throws Exception{
		Class.forName(jdbcName);
		Connection con=DriverManager.getConnection(dbUrl, dbUserName,dbPassword);
		return con;
	}
	
	/**
	 * 关闭连接
	 * @param con
	 * @throws Exception
	 */
	public void close(Statement stmt,Connection con)throws Exception{
		if(stmt!=null){
			stmt.close();
			if(con!=null){
				con.close();
			}

		}
			}
}




package model;
/**
 * 个人信息 
 * @author MC-DS
 *
 */

public class Person {

	private int id;
	private String personName;
	private int age;
	
	
	
	public Person(int id, String personName, int age) {
		super();
		this.id = id;
		this.personName = personName;
		this.age = age;
	}
	public Person(String personName, int age) {
		super();
		this.personName = personName;
		this.age = age;
	}
	public int getId() {	
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public String getPersonName() {
		return personName;
	}
	public void setPersonName(String personName) {
		this.personName = personName;
	}
	public Integer getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	
}



package jdbc.chap03;

import java.sql.Connection;
import java.sql.Statement;

import jdbc.util.DbUtil;
import model.Person;

public class Demo03 {
	
	private static DbUtil dbUtil=new DbUtil();
	
	private static int update01(Person person)throws Exception{
		Connection con=dbUtil.getCon();//获取连接
		String sql="update t_student set  name='"+person.getPersonName()+"',age="+person.getAge()+" where id="+person.getId()+"";
		Statement stmt=con.createStatement();//创建Statement
		int result=stmt.executeUpdate(sql);
		dbUtil.close(stmt, con);//关闭Statement和连接
		return result;
	}
	
	public static void main(String[] args) throws Exception {
	
		Person person=new Person(7,"古天樂",37);
		int result=update01(person);
		if(result==1){
			System.out.println("更新成功了!");
		}else {
			System.out.println("更新失败!");
		}
	}

}

更新成功了!





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值