javaEE jdbc編程步驟

來源:互聯網
上載者:User

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

1.載入資料庫驅動(jar檔案) 

//須要下載一個資料庫的jar包,並匯入對應的JDBC項目中,建立路徑!

Class.forName("com.mysql.jdbc.Driver");


2.獲得資料庫連接

DriverManager.getConnection("jdbc:mysql://Database_IP:3306/DATABASE","DATAROOT","PASSWORD");

//返回Connection————獲得資料庫連接


3.建立語句

String sql ="SQL_RUNNING";
此對象用於向DATABASE發送一個運行語句
Statement stmt =conn.createStatement();//建立一個 Statement對象來將 SQL 語句發送到資料庫.


4.執行查詢

//運行SQL_RUNNING命令,返回ResultSet

ResultSet rs =Statement.executeQuery(SQL_RUNNING);

//假設啟動並執行資料庫語句不是對資料庫中的內容進行改動的話,則用 Statement.executeQuery()

//假設啟動並執行資料庫語句是改動資料庫中的內容進行改動的話,則用Statement.executeUpdate()

 //當然他們返回值的類型也不同!

//依據命令的不同Statement的方法也不同

建立一個表

Statement.execute(create a table)

增刪改查Insert、update、delete...

Statement.executeUpdate()

查詢語句Select

Statement.executeQuery(Select);


5.遍曆結果集

while(ResultSet.next()){

    ResultSet.getInt(int);

    ResultSet.getString(int);

    ......

}


6.關閉資料庫連接

              Connection.close();







javaEE jdbc編程步驟

相關文章

聯繫我們

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