MyEclipse連線mysql配置教程
阿新 • • 發佈:2019-02-11
1、開啟MyEclipse
2、選擇選單:Window/Open Perspective/MyEclipse Database
Explorer,點選OK,在左邊開啟DB Brower視窗。
3、在DB Brower視窗內任意空白處擊右鍵,選擇New命令,彈出Database Driver視窗
4、本視窗各項說明:
Driver
template:MySQLConnector/J 選擇驅動模板
Driver name:
mybook 任何起個名字
ConnectionURL:jdbc:mysql://127.0.0.1:3306/book (book要改成你要連資料庫的名字)
User
name:root (你資料庫的使用者名稱)
Password:root (你資料庫的口令)
Driver JARs:點選Add
JARs選擇你的驅動包所在路徑 (包括包名)
Driver
classname:com.mysql.jdbc.Driver
5、點選Finisth,建立完成。
6、進行連線,在DB Brower視窗選中你剛建的mybook,點選DB
Brower視窗標題欄右側的三角形圖示,游標移動到其上時,會顯示“Open Connection”提示。
7、根據提示輸入密碼:root (選中save
password後下次就不用輸入密碼了),點選OK
8、這時DB Brower視窗中的mybook就可展開了,一直到表。
9、TABLE下面是表,右擊一個表,選擇Generate/Select
Statement,在右邊開啟
10、開啟的sql操作窗口裡自動產生查詢語句,點選上面的紅色三角形即可執行sql。
大致的連線程式碼
[java]view plaincopyprint?- publicclass conn {
- // public String
- String driver = "org.gjt.mm.mysql.Driver";
- String username = "root";
- String password= "1111";
-
String url = "jdbc:mysql://localhost/lisatisfy?user="
- Connection conntion=null;
- Connection conntion_update=null;
- ResultSet rs=null;
- public conn(){
- try{
- Class.forName(driver).newInstance();
- }catch(Exception e)
- {
- System.out.println(e.getMessage());
-
}
- }
- public String executeUpdate(String sql)
- {
- int guc=0;
- try {
- conntion_update=DriverManager.getConnection(url);
- Statement stmt= conntion_update.createStatement();
- stmt.executeUpdate(sql);
- guc=stmt.getUpdateCount();
- if(guc>0)
- {
- return"成功,影響行數:"+guc;
- }
- else
- return"失敗!";
- } catch (SQLException e) {
- // TODO: handle exception
- return"更新失敗!";
- }
- }
- public ResultSet executeQuery(String sql){
- try {
- conntion=DriverManager.getConnection(url);
- Statement stmt=conntion.createStatement();
- rs=stmt.executeQuery(sql);
- } catch (Exception e) {
- System.out.println(e.getMessage());
- // TODO: handle exception
- }
- return rs;
- }
- }
!!學習備份!!