標籤: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編程步驟