欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JDBC 完成数据库的增加 删除 修改

程序员文章站 2022-05-15 13:39:38
...

JDBC对数据库的增加 删除 修改操作一样,唯一不同就是sql命令不同

1 加载驱动 

2 创建连接对象

3 创建sql命令对象

4创建sql命令语句

5 执行sql命令

6关闭资源

public class TestDel {
    public static void main(String[] args) throws ClassNotFoundException, SQLException {
        //1加载驱动
        Class.forName("oracle.jdbc.driver.OracleDriver");
        //2创建连接对象
        Connection conn= getConnection("jdbc:oracle:thin:@localhost:1521:MLDN","scott","tiger");
        //3创建sql命令对象
        Statement stmt=conn.createStatement();
        //4创建sql命令
        String sql="delete from student where sname='张三三'";
        //5执行sql对象
        stmt.executeUpdate(sql);
        //6关闭资源
        stmt.close();
        conn.close();
    }
}