溫馨提示×

溫馨提示×

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

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

怎么在JDBC中使用Statement對數(shù)據(jù)庫進行修改

發(fā)布時間:2021-03-16 16:15:01 來源:億速云 閱讀:191 作者:Leah 欄目:編程語言

這期內(nèi)容當中小編將會給大家?guī)碛嘘P怎么在JDBC中使用Statement對數(shù)據(jù)庫進行修改,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

獲取數(shù)據(jù)連接后,即可對數(shù)據(jù)庫中的數(shù)據(jù)進行修改和查看。使用Statement 接口可以對數(shù)據(jù)庫中的數(shù)據(jù)進行修改

/**
 * 獲取數(shù)據(jù)庫連接,并使用SQL語句,向數(shù)據(jù)庫中插入記錄
 */
package com.pack03;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

public class TestStatement {

 //***************************該方法用于獲取數(shù)據(jù)庫連接*****************************
 public static Connection getConnection() throws Exception {
  // 1.將配置文件中的連接信息獲取到Properties對象中
  InputStream is = 
    TestStatement.class.getClassLoader().getResourceAsStream("setting.properties");

  Properties setting = new Properties();
  setting.load(is);

  // 2.從Properties對象中讀取需要的連接信息
  String driverName = setting.getProperty("driver");
  String url = setting.getProperty("url");
  String user = setting.getProperty("user");
  String password = setting.getProperty("password");

  // 3.加載驅動程序,即將數(shù)據(jù)庫廠商提供的Driver接口實現(xiàn)類加載進內(nèi)存;
  // 該驅動類中的靜態(tài)代碼塊包含有注冊驅動的程序,在加載類時將被執(zhí)行
  Class.forName(driverName);

  // 4.通過DriverManager類的靜態(tài)方法getConnection獲取數(shù)據(jù)連接
  Connection conn = DriverManager.getConnection(url, user, password);
  
  return conn;
 }
 
 
 //************************該方法用于執(zhí)行SQL語句,修改數(shù)據(jù)庫內(nèi)容*************************
 public static void testStatement( String sqlStatement ) {
  
  Connection conn = null;
  Statement statement = null;
  
  try {
   //1.獲取到數(shù)據(jù)庫的連接
   conn = getConnection();
   
   //2.用Connection中的 createStatement()方法獲取 Statement 對象
   statement = conn.createStatement();
   
   //3.調用 Statement 對象的 executeUpdate()方法,執(zhí)行SQL語句并修改數(shù)據(jù)庫
   statement.executeUpdate( sqlStatement );
   
  } catch (Exception e) {
   
   e.printStackTrace();
   
  } finally {
   
   //4.關閉Statement對象
   if(statement != null) {
    try {
     statement.close();
    } catch (SQLException e) {
     e.printStackTrace();
    }
   }
   
   //5.關閉 Connection對象
   if(conn != null) {
    try {
     conn.close();
    } catch (SQLException e) {
     e.printStackTrace();
    }
   }
  }
 }
 
 public static void main(String[] args) {
  
  
  String sqlInsert = "insert into tab001 values( 3, '小明3' )"; //插入語句
  String sqlUpdate = "update tab001 set name='王凱' where id=1"; //修改語句
  String sqlDelete = "delete from tab001 where id=2"; //刪除語句
  //對于Statement對象,不能執(zhí)行select語句
  
  testStatement( sqlInsert );
  testStatement( sqlUpdate );
  testStatement( sqlDelete );
 }
}

上述就是小編為大家分享的怎么在JDBC中使用Statement對數(shù)據(jù)庫進行修改了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI