java 串連MySql資料庫

來源:互聯網
上載者:User

標籤:style   color   java   os   io   資料   for   ar   

原始碼如下:

 

import java.sql.*;

public class ConToMySQL {
 public static void  main(String[] args) {
  //這裡"liuyan"是MySql下建立的一個測試資料庫
  //3306是MySql資料庫服務的預設連接埠
  String url="jdbc:mysql://localhost:3306/liuyan";
  String userName = "root";
  String password = "yourpassword";
  Connection con = null;
  try {

    //載入磁碟機類
   Class.forName("com.mysql.jdbc.Driver");
  } catch (Exception e) {
   // TODO: handle exception
   System.out.println("載入磁碟機類時出現異常");
  }
  try {

   //擷取資料庫連接
   con = DriverManager.getConnection(url,userName,password);
  } catch (Exception e) {
   // TODO: handle exception
   System.out.println("出現SQLException異常");
  }
  System.out.println("載入磁碟機成功");
  //接著就可以操作MySql資料庫了
  try {
   PreparedStatement preStatement = con.prepareStatement("insert into messages values(?,?,?,?,?)");
   preStatement.setString(1, "TestString1");
   preStatement.setString(2, "TestString2");
   preStatement.setDate(3, new java.sql.Date((new java.util.Date()).getTime()));
   preStatement.setString(4, "TestString3");
   preStatement.setString(5, "TestString4");
   preStatement.executeUpdate();
   preStatement.close();
   con.close();
   System.out.println("寫入MySQL資料庫成功");
  } catch (Exception e) {
   e.printStackTrace();
  }
 }

}

相關文章

聯繫我們

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