在数据库test里先创建表school,内容如下

JDBC 增、改、删 MySQL中的表

通过JDBC增加第五人tom,修改他的生日,最后删除tom

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

public class Demo {
    public static void main(String[] args) {
        Connection con=null;//连接接口
        Statement stmt=null;//语句接口
        try {
            Class.forName("com.mysql.cj.jdbc.Driver");//加载驱动类
            //test数据库地址
            String url="jdbc:mysql://localhost:3306/test?serverTimezone=UTC&characterEncoding=utf8&useSSL=false";
            con= DriverManager.getConnection(url,"root","123456");//连接数据库
            stmt=con.createStatement();//创建语句对象
            //执行更新executeUpdate(增、改、删)
            int result1=stmt.executeUpdate("insert into school(id,name,sex,birthday) values (5,'tom','男','2012-02-11')");
            //int result2=stmt.executeUpdate("update school set birthday='1990-12-10' where id=5");
            //int result3=stmt.executeUpdate("delete from school where id=5");
            System.out.println("有"+result1+"行纪录被修改");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

 

相关文章:

  • 2021-12-17
  • 2021-09-03
  • 2022-01-31
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
  • 2021-09-09
  • 2022-12-23
猜你喜欢
  • 2021-09-16
  • 2022-12-23
  • 2021-10-23
  • 2021-04-21
  • 2021-12-25
  • 2022-01-08
  • 2021-10-21
相关资源
相似解决方案