Java--JDBC串連MySQL

來源:互聯網
上載者:User

標籤:false   username   \n   users   get   連結   set   print   rgs   

//匯入驅動包

package DatabaseT;
import java.sql.*;
import com.mysql.jdbc.Connection;

public class MysqlDemo {
    static final String DB_URL = "jdbc:mysql://localhost:3306/ch09?useSSL=false";
    // MySQL的JDBCURL編寫方式:jdbc:mysql://主機名稱:串連連接埠/資料庫的名稱
    static final String USER = "root";
    static final String PASS = "root";

    public static void main(String[] args) throws SQLException,Exception{
       Connection conn = null;
       PreparedStatement stat = null;

       // 註冊驅動
       Class.forName("com.mysql.jdbc.Driver");

       // 建立連結
       conn = (Connection) DriverManager.getConnection(DB_URL,USER,PASS);

       // 執行查詢
       //stat = conn.createStatement();
       stat = conn.prepareStatement(DB_URL);
       String sql = "SELECT * FROM users";
       ResultSet rs = stat.executeQuery(sql);
       // 輸出查詢結果
       while(rs.next()){
           System.out.print(rs.getInt("id")+",");
           System.out.print(rs.getString("username")+",");
           System.out.print(rs.getString("password")+",");
           System.out.print(rs.getString("nickname"));
           System.out.print("\n");
       }
       // 關閉
      try {
          if (rs != null) {
              rs.close();
          }
      } catch (SQLException e) {
          e.printStackTrace();
      } finally {
          try {
              if (stat != null) {
                  stat.close();
              }
          } catch (SQLException e) {
              e.printStackTrace();
          } finally {
              try {
                  if (conn != null) {
                      conn.close();
                  }
              } catch (SQLException e) {
                  e.printStackTrace();
              }
          }
      }
    }
}

Java--JDBC串連MySQL

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.