溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jdbc與druid連接池怎么用

發(fā)布時間:2021-03-29 13:38:59 來源:億速云 閱讀:204 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細講解有關(guān)jdbc與druid連接池怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

使用jdbc實現(xiàn)對數(shù)據(jù)庫的操作

Ⅰ 獲取數(shù)據(jù)庫連接

package org.example.utils;
import java.sql.*;
public class JavaDateConnection {
 /**
  * 獲取數(shù)據(jù)庫連接
  * @return Connection
  */
 public Connection getConn() {
 //project為數(shù)據(jù)庫名
  String url = "jdbc:mysql://localhost:3306/project";
  //用戶名
  String username = "root";
  //密碼
  String password = "Hyk59308";
  Connection conn = null;
  try {
  //注冊驅(qū)動
   Class.forName("com.mysql.jdbc.Driver");
   //classLoader,加載對應(yīng)驅(qū)動
   conn = DriverManager.getConnection(url, username, password);
  } catch (ClassNotFoundException e) {
   e.printStackTrace();
  } catch (SQLException e) {
   e.printStackTrace();
  }
  return conn;
 }

Ⅱ編寫SQL語句對數(shù)據(jù)庫進行操作

String sql1="insert into myTable values(?,?,?,?)";//定義sql語句
		String sql2="select * from myTable";    //定義sql語句
		int result=0;    //修改操作的返回值是一個整數(shù),即受影響的行數(shù)

``/**
			 * PreparedStatement繼承自Statement接口,PreparedStatement的對象已預(yù)編譯過,
			 * 執(zhí)行速度快于Statement對象,創(chuàng)建其對象時,需要SQL命令字符串作為對象
			 */
			PreparedStatement ps=connection.prepareStatement(sql1);   
			ps.setString(1,"tanker");
			ps.setString(2, "m");
			ps.setString(3,"1991-11-20");
			ps.setString(4, "Franch");
			result=ps.executeUpdate();
			if(result>0)
				System.out.println("插入成功");
			else
				System.out.println("插入失敗");
			//Statement用于將sql語句發(fā)送到數(shù)據(jù)庫
			Statement statement=connection.createStatement();
			//執(zhí)行數(shù)據(jù)庫操作返回的結(jié)果集,其定義的是數(shù)據(jù)庫游標(biāo)
			ResultSet results=statement.executeQuery(sql2); 
			System.out.println("name"+" "+"sex"+" "+"birth"+" "+"birthaddr");
			System.out.println("------------------------");
			while(results.next())
			{
				System.out.println(results.getString("name")+" "+
							  results.getString("sex")+" "+
							  results.getString("birth")+" "+
							  results.getString("birthaddr"));
			}
			System.out.println("搞定!");

Ⅲ關(guān)閉相關(guān)資源

 * 關(guān)閉Connection PreparedStatement
  * @param connection
  * @param preparedStatement
  */
 public static void closeConnection(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet){
  if (resultSet != null) {
   try {
    resultSet.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }
  if (preparedStatement != null) {
   try {
    preparedStatement.close();
   } catch (SQLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }
  if (connection != null) {
   try {
    connection.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }
 }

使用Druid連接池u對數(shù)據(jù)庫進行操作

Ⅰ創(chuàng)建Druid連接池對象并獲取

package util;
import com.alibaba.druid.pool.DruidDataSourceFactory;

import javax.sql.DataSource;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;

import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

public class DBUtil {
 private static DataSource ds;
 static {
  //1.加載配置文件
  Properties pro = new Properties();
  try {
   pro.load(DBUtil.class.getClassLoader().getResourceAsStream("/db.properties"));
   //獲取DataSource
   ds = DruidDataSourceFactory.createDataSource(pro);
  } catch (IOException e) {
   e.printStackTrace();
  } catch (Exception e) {
   e.printStackTrace();
  }
 }
 //獲取連接
 public static Connection getConnection() throws SQLException {
  return ds.getConnection();
 }

Ⅱ創(chuàng)建SQL語句實現(xiàn)對數(shù)據(jù)庫的操作

/**
  * @param sql SQL語句
  * @param objs	SQL語句占位符實參,如果沒有參數(shù)則傳入null
  * @return 返回增刪改的結(jié)果,類型為int
  */
 public static int executeDML(String sql,Object...objs){
  // 聲明jdbc變量
  Connection conn = null;
  PreparedStatement ps = null;
  int i = -1;
  try {
   // 獲取連接對象
   conn = DBUtil.getConnection();
   // 開啟事務(wù)管理
   conn.setAutoCommit(false);
   // 創(chuàng)建SQL命令對象
   ps = conn.prepareStatement(sql);
   // 給占位符賦值
   if(objs!=null){
    for(int j=0;j<objs.length;j++){
     ps.setObject(j+1,objs[j]);
    }
   }
   // 執(zhí)行SQL
   i = ps.executeUpdate();
   conn.commit();
  } catch (Exception e) {
   try {
    conn.rollback();
   } catch (SQLException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
   }
   e.printStackTrace();
  } finally {
   DBUtil.closeAll(null, ps, conn);
  }
  return i;
 }

Ⅲ關(guān)閉相關(guān)資源

//關(guān)閉資源
 public static void closeAll(ResultSet rs,Statement stmt,Connection conn){
  try {
   if(rs!=null){
    rs.close();
   }
  } catch (SQLException e1) {
   // TODO Auto-generated catch block
   e1.printStackTrace();
  }
  try {
   stmt.close();
  } catch (SQLException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
  try {
   conn.close();
  } catch (SQLException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

關(guān)于“jdbc與druid連接池怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI