search
HomeJavajavaTutorialjava special topic about JDBC
java special topic about JDBCApr 24, 2017 am 11:08 AM

JDBC (connection to Oracle)

JDBC programming steps:
----Connection between java and Oracle data
1.Find the jdbc folder → lib folder → classesl2.jar in the Oracle database installation folder (Choose different jars according to jre Package )
## 2. Import this Jar package into eclipse
Import method:
##Create a project, right-click on the project name and select Build Path→Add External Archives→##                                                          Select classesl2.jar to import
3. Create a new program to write the code to connect to Oracle

The steps are as follows:
1. Example driver class

 class.forName("
Oracle.jdbc.driver.OracleDriver
");

#2. Create the connection to the database

#

 
 Connection conn = DriverManager.getConnection("jdbc:oracle:thin:
                            @192.168.8.1:1521:yuewei","scott","tiger");

## 3.

Obtain an object that executes a sql statement based on the connection

 Statement stm = conn.CreatStatement();
      4. Execute the statement (select statement)

 ResultSet rs = stm.executeQuery(select * from dept);
                                                                                                                  Display statement

rs.getString("deptno");

##JDBC connection database

  1. •Create a program to connect to the database using JDBC, including

  2. 7

    steps:

  3. 1

    . Load the JDBC driver: # Before connecting to the database, you must first load the driver of the database you want to connect to the JVM (Java Virtual Machine),

  4. This is achieved through the static method forName(String className) of the java.lang.Class class.

  5. For example:

  6.     try{   

  7.     //加载MySql的驱动类   

  8.  Class.forName("com.mysql.jdbc.Driver") ;
       
        }catch(ClassNotFoundException e){
       
        System.out.println("找不到驱动程序类 ,加载驱动失败!");
       
        e.printStackTrace() ;   
        }
  9.    成功加载后,会将Driver类的实例注册到DriverManager类中。   

  10.  2、提供JDBC连接的URL   

  11.    •连接URL定义了连接数据库时的协议、子协议、数据源标识。   

  12.     •书写形式:协议:子协议:数据源标识   

  13.     协议:在JDBC中总是以jdbc开始   

  14.     子协议:是桥连接的驱动程序或是数据库管理系统名称。   

  15.     数据源标识:标记找到数据库来源的地址与连接端口。   

  16.     例如:(MySql的连接URL)   

  17.     jdbc:mysql:   

  18.         //localhost:3306/test?useUnicode=true&characterEncoding=gbk ;   

  19.    useUnicode=true:表示使用Unicode字符集。如果characterEncoding设置为   

  20.    gb2312或GBK,本参数必须设置为true 。characterEncoding=gbk:字符编码方式。   

  21.  3、创建数据库的连接   

  22.     •要连接数据库,需要向java.sql.DriverManager请求并获得Connection对象,   

  23.      该对象就代表一个数据库的连接。   

  24.     •使用DriverManager的getConnectin(String url , String username ,    

  25.     String password )方法传入指定的欲连接的数据库的路径、数据库的用户名和   

  26.      密码来获得。   

  27.      例如:   

  28.      //连接MySql数据库,用户名和密码都是root   

  29.   String url = "jdbc:mysql://localhost:3306/test" ; 
         String username = "root" ;
         String password = "root" ;
         try{
        Connection con =    
                 DriverManager.getConnection(url , username , password ) ;   
         }catch(SQLException se){
        System.out.println("数据库连接失败!");
        se.printStackTrace() ;   
         }
  30.  4、创建一个Statement   

  31.     •要执行SQL语句,必须获得java.sql.Statement实例,Statement实例分为以下3  

  32.      种类型:   

  33.       1、执行静态SQL语句。通常通过Statement实例实现。   

  34.       2、执行动态SQL语句。通常通过PreparedStatement实例实现。   

  35.       3、执行数据库存储过程。通常通过CallableStatement实例实现。   

  36.     具体的实现方式:   

  37.         Statement stmt = con.createStatement() ;   

  38.        PreparedStatement pstmt = con.prepareStatement(sql) ;   

  39.        CallableStatement cstmt = con.prepareCall("{CALL demoSp(? , ?)}") ;   

  40.  5、执行SQL语句   

  41.     Statement接口提供了三种执行SQL语句的方法:executeQuery 、executeUpdate   

  42.    和execute   

  43.     1、ResultSet executeQuery(String sqlString):执行查询数据库的SQL语句   

  44.         ,返回一个结果集(ResultSet)对象。   

  45.      2int executeUpdate(String sqlString):用于执行INSERT、UPDATE或   

  46.         DELETE语句以及SQL DDL语句,如:CREATE TABLE和DROP TABLE等   

  47.      3、execute(sqlString):用于执行返回多个结果集、多个更新计数或二者组合的   

  48.         语句。   

  49.    具体实现的代码:   

  50.  ResultSet rs = stmt.executeQuery("SELECT * FROM ...") ;
          int rows = stmt.executeUpdate("INSERT INTO ...") ;
          boolean flag = stmt.execute(String sql) ;
  51.  6、处理结果   

  52.     两种情况:   

  53.      1、执行更新返回的是本次操作影响到的记录数。   

  54.      2、执行查询返回的结果是一个ResultSet对象。   

  55.     • ResultSet包含符合SQL语句中条件的所有行,并且它通过一套get方法提供了对这些   

  56.       行中数据的访问。   

  57.     • 使用结果集(ResultSet)对象的访问方法获取数据:   

  58.  while(rs.next()){
             String name = rs.getString("name") ;
        String pass = rs.getString(1) ; // 此方法比较高效   
         }
  59.     (列是从左到右编号的,并且从列1开始)   

  60.  7、关闭JDBC对象    

  61.      操作完成以后要把所有使用的JDBC对象全都关闭,以释放JDBC资源,关闭顺序和声   

  62.      明顺序相反:   

  63.      1、关闭记录集   

  64.      2、关闭声明   

  65.      3、关闭连接对象   

  66.  if(rs != null){   // 关闭记录集   
            try{
                rs.close() ;   
            }catch(SQLException e){
                e.printStackTrace() ;   
            }   
              }   
              if(stmt != null){   // 关闭声明   
            try{
                stmt.close() ;   
            }catch(SQLException e){
                e.printStackTrace() ;   
            }   
              }   
              if(conn != null){  // 关闭连接对象   
             try{
                conn.close() ;   
             }catch(SQLException e){
                e.printStackTrace() ;   
             }   
              }

<pre name="code" class="java">import java.sql.*;  
public class TestJDBC {  
 public static void main(String[] args) {  
  ResultSet rs = null;  
  Statement stmt = null;  
  Connection conn = null;  

     //连接数据库,用户名和密码都是root   
     String url = "jdbc:oracle:thin:@192.168.1.56:1521:yuewei" ;    
     String username = "root" ;   
     String password = "root" ;   
  try {  
   Class.forName("oracle.jdbc.driver.OracleDriver");  //加载数据库的驱动类
   conn = DriverManager.getConnection(url, username, password);  
   stmt = conn.createStatement();  
   rs = stmt.executeQuery("select * from kkk");   
   while(rs.next()) {  
    System.out.println(rs.getString(1)); // 此方法比较高效  (列是从左到右编号的,并且从列1开始)         
   }  
  } catch (ClassNotFoundException e) {  
   e.printStackTrace();  
  } catch (SQLException e) {  
   e.printStackTrace();  
  } finally {  
   try {  
    if(rs != null) {  
     rs.close();  
     rs = null;  
    }  
    if(stmt != null) {  
     stmt.close();  
     stmt = null;  
    }  
    if(conn != null) {  
     conn.close();  
     conn = null;  
    }  
   } catch (SQLException e) {  
    e.printStackTrace();  
   }  
  }  
 }  
  
}

The above is the detailed content of java special topic about JDBC. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor