一個完整的Mysql的JDBC串連

來源:互聯網
上載者:User
  1. import java.sql.Connection;   
  2. import java.sql.DriverManager;   
  3. import java.sql.ResultSet;   
  4. import java.sql.SQLException;   
  5. import java.sql.Statement;   
  6.   
  7. public class TestJDBC {   
  8.   
  9.     public static void main(String[] args) {   
  10.         Connection conn = null;   
  11.         Statement stat = null;   
  12.         ResultSet rs = null;   
  13.   
  14.         try {   
  15.             //兩種方式   
  16.             Class.forName("com.mysql.jdbc.Driver");   
  17.             //new com.mysql.jdbc.Driver();   
  18.             //串連資料庫   
  19.             conn = DriverManager   
  20.                     .getConnection("jdbc:mysql://localhost/student?user=root&password=root");   
  21.             //建立一個Statement執行個體   
  22.             stat = conn.createStatement();   
  23.             //執行一些靜態SQL語句   
  24.             rs = stat.executeQuery("select * from c");   
  25.             System.out.println("id - name");   
  26.             while (rs.next()) {   
  27.                 System.out.print(rs.getInt("id"));   
  28.                 System.out.print(" - ");   
  29.                 System.out.print(rs.getString("name"));   
  30.                 System.out.println();   
  31.             }   
  32.         } catch (ClassNotFoundException e) {   
  33.             e.printStackTrace();   
  34.         } catch (SQLException e) {   
  35.             e.printStackTrace();   
  36.         } finally {   
  37.             try {   
  38.                 if (null != rs) {   
  39.                     rs.close();   
  40.                     rs = null;   
  41.                 }   
  42.                 if (null != stat) {   
  43.                     stat.close();   
  44.                     stat = null;   
  45.                 }   
  46.                 if (null != conn) {   
  47.                     conn.close();   
  48.                     conn = null;   
  49.                 }   
  50.             } catch (SQLException e) {   
  51.                 e.printStackTrace();   
  52.             }   
  53.         }   
  54.     }   
  55. }  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.