国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Java知識點總結(JDBC-連接步驟及CRUD)

hankkin / 901人閱讀

摘要:知識點總結連接步驟及知識點總結連接數據庫步驟依序關閉使用的對象連接操作加載對應驅動建立連接連接對象內部包含了對象,是一個遠程連接。比較耗時這是對象管理的一個要點真正開發中,為了提高效率,都會使用連接池來管理連接對象張柏芝女張三執行結果

Java知識點總結(JDBC-連接步驟及CRUD)

@(Java知識點總結)[Java, JDBC]

連接數據庫步驟

依序關閉使用的對象連接:

ResultSet -> Statement -> Connection

CRUD操作
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
 
 
public class StudentDao {
 
  private static Connection getConn() {
      String driver = "com.mysql.jdbc.Driver";
      String url = "jdbc:mysql://localhost:3306/test";
      String username = "root";
      String password = "123";
      Connection conn = null;
      try {
          Class.forName(driver); //classLoader,加載對應驅動
          //建立連接(連接對象內部包含了Socket對象,是一個遠程連接。比較耗時!這是Connection對象管理的一個要點!)
          //真正開發中,為了提高效率,都會使用連接池來管理連接對象!
          conn = (Connection) DriverManager.getConnection(url, username, password);
      } catch (ClassNotFoundException e) {
          e.printStackTrace();
      } catch (SQLException e) {
          e.printStackTrace();
      }
      return conn;
  }
  
  private static int insert(User user) {
      Connection conn = getConn();
      int i = 0;
      String sql = "insert into users (Name,Sex,Age) values(?,?,?)";
      PreparedStatement pstmt = null;
      try {
          pstmt = (PreparedStatement) conn.prepareStatement(sql);
          pstmt.setString(1, user.getName());
          pstmt.setString(2, user.getSex());
          pstmt.setInt(3, user.getAge());
          i = pstmt.executeUpdate();
          pstmt.close();
          conn.close();
      } catch (SQLException e) {
          e.printStackTrace();
      }finally {
     try {
      pstmt.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
     try {
      conn.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
   }
      return i;
  }
  
  private static int update(User user) {
      Connection conn = getConn();
      int i = 0;
      String sql = "update users set Age="" + user.getAge() + "" where Name="" + user.getName() + """;
      PreparedStatement pstmt = null;
      try {
          pstmt = (PreparedStatement) conn.prepareStatement(sql);
          i = pstmt.executeUpdate();
          System.out.println("resutl: " + i);
          pstmt.close();
          conn.close();
      } catch (SQLException e) {
          e.printStackTrace();
      }finally {
     try {
      pstmt.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
     try {
      conn.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
   }
      return i;
  }
  
  private static Integer getAll() {
      Connection conn = getConn();
      String sql = "select * from users";
      PreparedStatement pstmt =null;
      ResultSet  rs = null;
      try {
          pstmt = (PreparedStatement)conn.prepareStatement(sql);
          rs = pstmt.executeQuery();
          int col = rs.getMetaData().getColumnCount();
          System.out.println("============================");
          while (rs.next()) {
              for (int i = 1; i <= col; i++) {
                  System.out.print(rs.getString(i) + "	");
                  if ((i == 2) && (rs.getString(i).length() < 8)) {
                      System.out.print("	");
                  }
               }
              System.out.println("");
          }
              System.out.println("============================");
      } catch (SQLException e) {
          e.printStackTrace();
      }finally {
       try {
      rs.close();
     } catch (SQLException e1) {
      e1.printStackTrace();
     }
     try {
      pstmt.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
     try {
      conn.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
   }
      return null;
  }
  
  private static int delete(String name) {
      Connection conn = getConn();
      int i = 0;
      String sql = "delete from users where Name="" + name + """;
      PreparedStatement pstmt = null;
      try {
          pstmt = (PreparedStatement) conn.prepareStatement(sql);
          i = pstmt.executeUpdate();
          System.out.println("resutl: " + i);
          pstmt.close();
          conn.close();
      } catch (SQLException e) {
          e.printStackTrace();
      }finally {
     try {
      pstmt.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
     try {
      conn.close();
     } catch (SQLException e) {
      e.printStackTrace();
     }
   }
      return i;
  }
  
  public static void main(String[] args) {
   getAll();
       insert(new User("張柏芝", "女", 43));
       getAll();
       update(new User("張三", "", 38));
       delete("Achilles");
       getAll();
  }
}
public class User {
 
  private int id;
  private int age;
  private String name ;
  private String sex;
  
  
  public User( String name, String sex,int age) {
   this();
   this.age = age;
   this.name = name;
   this.sex = sex;
  }
  public User() {
 
  }
  public int getAge() {
   return age;
  }
  public int getId() {
   return id;
  }
  public String getName() {
   return name;
  }
  public String getSex() {
   return sex;
  }
  public void setAge(int age) {
   this.age = age;
  }
  public void setId(int id) {
   this.id = id;
  }
  public void setName(String name) {
   this.name = name;
  }
  public void setSex(String sex) {
   this.sex = sex;
  }
  
}

執行結果:

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/71427.html

相關文章

  • Java3y文章目錄導航

    摘要:前言由于寫的文章已經是有點多了,為了自己和大家的檢索方便,于是我就做了這么一個博客導航。 前言 由于寫的文章已經是有點多了,為了自己和大家的檢索方便,于是我就做了這么一個博客導航。 由于更新比較頻繁,因此隔一段時間才會更新目錄導航哦~想要獲取最新原創的技術文章歡迎關注我的公眾號:Java3y Java3y文章目錄導航 Java基礎 泛型就這么簡單 注解就這么簡單 Druid數據庫連接池...

    KevinYan 評論0 收藏0
  • Spring事務整理

    摘要:使用需要使用作為事務管理器。兩個事務互不影響。這是默認的隔離級別,使用數據庫默認的事務隔離級別下邊的四個與的隔離級別相對應這是事務最低的隔離級別,它充許另外一個事務可以看到這個事務未提交的數據。這種事務隔離級別可 Spring事務整理 工作了幾年了,今天抽時間整理一下spring的事務,說起spring的事務是面試的時候面試官經常提及的問題,接下來結合網上資料再總結下spring的事務...

    stackvoid 評論0 收藏0
  • 一起來學SpringBoot | 第六篇:整合SpringDataJpa

    摘要:忽略該字段的映射省略創建數據訪問層接口,需要繼承,第一個泛型參數是實體對象的名稱,第二個是主鍵類型。 SpringBoot 是為了簡化 Spring 應用的創建、運行、調試、部署等一系列問題而誕生的產物,自動裝配的特性讓我們可以更好的關注業務本身而不是外部的XML配置,我們只需遵循規范,引入相關的依賴就可以輕易的搭建出一個 WEB 工程 上一篇介紹了Spring JdbcTempl...

    Dionysus_go 評論0 收藏0
  • JDBC【數據庫連接池、DbUtils框架、分頁】

    摘要:數據庫連接池什么是數據庫連接池簡單來說數據庫連接池就是提供連接的。。。 1.數據庫連接池 什么是數據庫連接池 簡單來說:數據庫連接池就是提供連接的。。。 為什么我們要使用數據庫連接池 數據庫的連接的建立和關閉是非常消耗資源的 頻繁地打開、關閉連接造成系統性能低下 編寫連接池 編寫連接池需實現java.sql.DataSource接口 創建批量的Connection用Linke...

    dinfer 評論0 收藏0

發表評論

0條評論

hankkin

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<