註冊 jdbc Driver
設定 Connection
建立 Statment
取得 ResultSet
//初始化 jdbc connector
try {
Class.forName("com.mysql.jdbc.Driver");
Connection con;
//使用DriverManager 工廠類別得到 Conneciton
String jdbcStr ="jdbc:mysql://localhost/student?useUnicode=true&characterEncoding=Big5";
con = DriverManager.getConnection( jdbcStr , "root", password);
//使用 Connection 取得 stmt 的實體
Statement stmt = null;
stmt = con.createStatement();
String sql_all = "select * from mon1;";
ResultSet rs = null;
//取得 select 的結果 resultset
rs = stmt.executeQuery(sql_all);
while(rs.next){
//運用 rs.getXXX(columnName) 將相關資料取出
}
} catch (ClassNotFoundException | SQLException ex) {
// TODO Auto-generated catch block
ex.printStackTrace();
}
沒有留言:
張貼留言