首页 > 作文

Java使用JDBC连接数据库的详细步骤

更新时间:2023-04-04 09:52:10 阅读: 评论:0

一、jdbc是什么?

jdbc 指 java 数据库连接(java databa connectivity),是一种标准java应用编程接口( java api),jdbc就是一套sun公司定义的接口,jdbc本质上就是sun公司制定的一套接口(interface)!每个数据库厂商需要实现这套接口。我们只需要调用需要即可用来连接 java 编程语言和广泛的数据库。

jdbc api 库包含下面提到的每个任务,都是与数据库相关的常用用法。

制作到数据库的连接。创建 sql 或 mysql 语句。执行 sql 或 mysql 查询数据库。查看和修改所产生的记录。

从根本上来说,jdbc 是一种规范,它提供了一套完整的接口,允许便携式访问到底层数据库,因此可以用 java 编写不同类型的可执行文件,例如:

java 应用程序java appletsjava rvletsjava rverpages (jsps)enterpri javabeans (ejbs)

所有这些不同的可执行文件就可以使用 jdbc 驱动程序来访问数据库,这样可以方便的访问数据。

jdbc 具有 odbc 一罗蒙环球城样的性能,允许 java 程序包含与数据库无关的代码。

二、使用步骤

1.注册驱动

数据库厂商的java程序员所写的实现类 叫做驱动 driver

注册驱动

第一种注册方法代码如下:(不常用)

public class 注册驱动 {    public static void main(string[] args) {        try {            drivermanager.registerdriver(new com.mysql.jdbc.driver());        } catch (sqlexception throwables) {            throwables.printstacktrace();        }    } }

第二种方利用反射的特性,加载过程中注册驱动的过程。

关于反射的补充:java中的灵魂-反射机制

关于jdbc—mysql中以类加载的方式注册驱动(反射)详解链接:

jdbc—mysql以类加载的方式注册驱动(反射)

class.forname(com.mysql.jdbc.driver);

上述一行代码就可以通过反射这个动作调用类,实现driver类的加载 但是需要使用try和catch语句块环绕

2.获取连接

要连接数据库的url—-stringurl=”jdbc:mysql://localhost:3306/test?”+“uunicode=true&characterencoding=utf8”;//防止乱码
要连接数据库的用户名—-stringur=”xxxx”;
要连接数据库的密码—-stringpass=”xxxx”;

接下来我们分析下url:
“jdbc(这是协议以jdbc开头):mysql(这是子协议,数据库管理系统称)://localhost(数据库来源地址):3306(目标端口)/test(要查询的表的表名)?”
“uunicode=true&characterencoding=utf8”;添加这个是为了防止乱码,指定使用unicode字符集,且使用utf-8来编辑。

            /*                url包括哪几部分:                    协议                    ip                    port                    资源名                eg:http://180.101.49.11:80/index.html                    http:// 通信协议                    180.101.49.11 ip地址                    80 端口号                    index.html 资源名            */
 // 2、获取连接/*url包括哪几部分:协议ipport资源名eg:http://180.101.49.11综合素质平台:80/index.htmlhttp:// 通信协议180.101.49.11 ip地址80 端口号index.html 资源名*/            // static connection getconnection(string url, string ur, string password)            string url = "jdbc:mysql://127.0.0.1:3306/hello";            string ur = "root";            system.out.println(" ");            string password = "rota";            conn = drivermanager.getconnection(url,ur,password);            system.out.println("数据库连接对象 :     " + conn);//数据库连接对象com.mysql.jdbc.jdbc4connection@1ae369b7

3.获取数据库操作对象

            // 3、获取数据库操作对象            // statement 类中 createstatement() 创建一个 statement 对象来将 sql 语句发送到数据库。            stmt = conn.createstatement();             // 4、执行sql语句            // int executeupdate(string sql)            // 专门执行dml语句            // 返回值是“影响数据库中的记录条数”            int count = stmt.executeupdate("update dept t dname = '销售部',loc = '合肥' where deptno = 20;");            system.out.println(count == 1 ? "保存成功":"保存失败");

4.执行sql语句

            // 4、执行sql语句            // int executeupdate(string sql)            // 专门执行dml语句            // 返回值是“影响数据库中的记录条数”            int count = stmt.executeupdate("update dept t dname = '销售部',loc = '合肥' where deptno = 20;");            system.out.println(count == 1 ? "保存成功":"保存失败");

5.处理查询结果集

rs = stmt.executequery("lect empno,ename,sal from emp");             while(rs.next()){/*string empno = rs.getstring(1);string ename = rs.getstring(2);string sal = rs.getstring(3);system.out.println(empno + "," + ename + "," + sal);*/ /*// 按下标取出,程序不健壮string empno = rs.getstring("empno");string ename = rs.getstring("ename");string sal = rs.getstring("sal");system.out.println(empno + "," + ename + "," + sal);*/ /*// 以指定的格式取出int empno = rs.getint(1);string ename = rs.getstring(2);double sal = rs.getdouble(3);system.out.println(empno + "," + ename + "," + (sal + 100));*/                 int empno = rs.getint("empno");                string ename = rs.getstring("ename");                double sal = rs.getdouble("sal");                system.out.println(empno + "," + ename + "," + (sal + 200));            }

其中执行增删改的方法返回值是int类型

执行查询的方法返回值是操作结果集对象,即使resultt的实例化对象!

6.释放资源

finally {            // 6、释放资源            // 从小到大依次关闭            //finally语句块内的语句一定会执行!            i辞呈报告f(stmt != null) {                try{                    stmt.clo();                }                catch (sqlexception e) {                    e.printstacktrace();                }            }            if(conn != null) {                try{                    conn.clo();                }                catch (sqlexception e) {                    e.printstacktrace();                }            }        }    }

上述六步连贯:

第一次优化:(比较两种注册驱动的方法)

   import java.sql.*; public class jdbctest01 {    public static void main(string[] args) {        connection conn = null;        statement stmt = null;//先创建连接对象 和 操作对象 并且引用为空,是为了对象变量的生命周期不仅仅局限于try语句块内,而是在整个main方法内,方便后续finally语句块内释放资源        try{            // 1、注册驱动            driver driver = new com.mysql.jdbc.driver();//多态,父类型引用指向子类型对象            drivermanager.registerdriver(driver);             // 2、获取连接/*url包括哪几部分:协议ipport资源名eg:http://180.101.49.11:80/index.htmlhttp:// 通信协议180.101.49.11 ip地址80 端口号index.html 资源名*/            // static connection getconnection(string url, string ur, string password)            string url = "jdbc:mysql://127.0.0.1:3306/hello";            string ur = "root";            system.out.println(" ");            string password = "rota";            conn = drivermanager.getconnection(url,ur,password);            system.out.println("数据库连接对象 :     " + conn);//数据库连接对象com.mysql.jdbc.jdbc4connection@1ae369b7             // 3、获取数据库操作对象            // statement 类中 createstatement() 创建一个 statement 对象来将 sql 语句发送到数据库。            stmt = conn.createstatement();             // 4、执行sql语句            // int executeupdate(string sql)            // 专门执行dml语句            // 返回值是“影响数据库中的记录条数”            int count = stmt.executeupdate("update dept t dname = '销售部',loc = '合肥' where deptno = 20;");            system.out.println(count == 1 ? "保存成功":"保存失败");             // 5、处理查询结果集         } catch(sqlexception e) {            e.printstacktrace();        } finally {            // 6、释放资源            // 从小到大依次关闭            //finally语句块内的语句一定会执行!            if(stmt != null) {                try{                    stmt.clo();                }                catch (sqlexception e) {                    e.printstacktrace();                }            }            if(conn != null) {                try{                    conn.clo();                }                catch (sqlexception e) {                    e.printstacktrace();                }            }        }    }}

第二次优化:(比较两种注册驱动的方法)

package com.zdx.source.code.jdbc; /*jdbc完成delete*/import java.sql.*; public class jdbctest02 {    public static void main(string[] args) {        // 1、注册驱动        // 2、获取连接        // 3、获取数据库操作对象        // 4、执行sql语句        // 5、获取查询结果集        // 6、释放资源         connection conn = null;        statement stmt = null;        try {            driver driver = new com.mysql.jdbc.driver();            drivermanager.registerdriver(driver);             string url = "jdbc:mysql://127.0.0.1:3306/mydataba";            string ur = "root";            string password = "146";            conn = drivermanager.getconnection(url,ur,password);             stmt = conn.createstatement();             int count = stmt.executeupdate("delete from dept where deptno = 50");             system.out.println(count == 1? "删除成功":"删除失败");         } catch(sqlexception e){            e.printstacktrace();        } finally {            if(conn != null) {                try {                    conn.clo();                } catch(sqlexception e){                    e.printstacktrace();                }            }            if(stmt != null) {                try {                    stmt.clo();                } catch(sqlexception e){                    e.printstacktrace();                }            }        }    }}

第三次优化:(最佳注册驱动获取连接)

package com.zdx.source.code.jdbc; /*注册驱动的另一种方式*/ import java.sql.*; public class jdbctest03 {    public static void main(string[] args) {        try{            // 注册驱动            class.forname("com.mysql.jdbc.driver");             // 获取连接            connection conn = drivermanager.getconnection("jdbc:mysql://localhost:3306/mydataba","root","146");            system.out.println(conn);         } catch(sqlexception e){            e.printstacktrace();        } catch(classnotfoundexception e){            e.printstacktrace();        }    }}

第四次优化:(使用资源绑定器)

package com.zdx.source.code.jdbc; /*使用资源绑定器*/ import java.sql.*;import java.util.*; public class jdbctest04 {    public static void main(string[] args) {         resourcebundle bundle = resourcebundle.getbundle("jdbc");        string driver = bundle.getstring("driver");        string url = bundle.getstring("url");        string ur = bundle.getstring("ur");        string password = bundle.getstring("password");         connection conn = null;        statement stmt = null;        try {            class.forname(driver);             conn = drivermanager.getconnection(url,ur,password);             stmt = conn.createstatement();             int count = stmt.executeupdate("inrt into dept(deptno,dname,loc) values(50,'人事部','北京');");             system.out.println(count == 1? "保存成功":"保存失败");         } catch(sqlexception e){            e.printstacktrace();        } catch(classnotfoundexception e) {            e.printstacktrace();        } finally {            if(conn != null) {                try {                    conn.clo();                } catch(sqlexception e){                    e.printstacktrace();                }            }            if(stmt != null) {                try {                    stmt.clo();                } catch(sqlexception e){                    e.printstacktrace();                }            }        }    }}

第五次优化:(对操作结果集的处理)

package com.zdx.source.code.jdbc; /*执行dql语句*/ import java.sql.*;import java.util.*; public class jdbctest05 {    public static void main(string[] args) {        // 1、注册驱动        // 2、建立连接        // 3、获取数据库操作对象        // 4、执行sql语句        // 5、获取查询结果集        // 6、释放资源        connection conn = null;        statement stmt = null;        resultt rs = null;         try{            resourcebundle rb = resourcebundle.getbundle("jdbc");            string driver = rb.getstring("driver");            string url = rb.getstring("url");            string ur = rb.getstring("ur");            string password = rb.getstring("password");             class.forname(driver);             conn = drivermanager.getconnection(url,ur,password);     学而不思则罔思而不学则殆的意思        stmt = conn.createstatement();             rs = stmt.executequery("lect empno,ename,sal from emp");             while(rs.next()){/*string empno = rs.getstring(1);string ename = rs.getstring(2);string sal = rs.getstring(3);system.out.println(empno + "," + ename + "," + sal);*/ /*// 按下标取出,程序不健壮string empno = rs.getstring("empno");string ename = rs.getstring("ename");string sal = rs.getstring("sal");system.out.println(empno + "," + ename + "," + sal);*/ /*// 以指定的格式取出int empno = rs.getint(1);string ename = rs.getstring(2);double sal = rs.getdouble(3);system.out.println(empno + "," + ename + "," + (sal + 100));*/                 int empno = rs.getint("empno");                string ename = rs.getstring("ename");                double sal = rs.getdouble("sal");                system.out.println(empno + "," + ename + "," + (sal + 200));            }         } catch(exception e){            e.printstacktrace();        }finally{            if(rs != null){                try{                    rs.clo();                } catch (exception e){                    e.printstacktrace();                }            }            if(stmt != null){                try{                    stmt.clo();                } catch (exception e){                    e.printstacktrace();                }            }            if(conn != null){                try{                    conn.clo();                } catch (exception e){                    e.printstacktrace();                }            }        }    }}

总结:

在上述五次优化代码的过程中,针对这六步

        // 1、注册驱动        // 2、获取连接        // 3、获取数据库操作对象        // 4、执行sql语句        // 5、获取查询结果集        // 6、释放资源

第一步的注册驱动最终使用了反射,已达最优

第二步的获取连接已达最优,已经有能力去完可数吗成jdbc连接数据库的工具类的封装了

看到这里可以移步去学习—————>啦!

注:

第三步的获取数据库操作对象中我们是使用statement接口

public interface statement extends wrapper, autocloable 

还可以优化成为preparedstatement

public interface preparedstatement extends statement

在实际开发过程中由于preparedstatement能防止注入,且预先编译sql语句的特性使得程序健壮性提高,所以实际开发中99.9%使用preparedstatement。这是后话,由于封装工具类主要封装的是注册驱动,获取连接和释放资源,后续将专门写一篇博客讨论preparedstatement

此外在实际开发中除了掌握上述六步还需要掌握事务提交回滚三部曲。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 09:51:11,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/80e86c2bf4f64b2057237bcc6f7c0b42.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Java使用JDBC连接数据库的详细步骤.doc

本文 PDF 下载地址:Java使用JDBC连接数据库的详细步骤.pdf

标签:语句   对象   数据库   资源
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图