1. 程式人生 > >菜鳥篇之JSP,MyEclipse連線MySQL

菜鳥篇之JSP,MyEclipse連線MySQL

我下載的MySQL是5.7版本,關於下載安裝自己好好弄吧,環境搭建好是開發的前提嘛‘’

一.JSP連線

這個很簡單,



建立了一個基本的資料庫CC‘’

下面我們來編寫JSP檔案‘’

<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="java.sql.*" %>
<HTML><BODY>
 <% Connection con;
    Statement sql; 
    ResultSet rs;
    try {  Class.forName("com.mysql.jdbc.Driver");
        }
    catch(Exception e)
        { out.print(e);
        }
    try { String uri= "jdbc:mysql://localhost/CC";
          con=DriverManager.getConnection(uri,"root","j1995821gw");
          sql=con.createStatement();
          rs=sql.executeQuery("SELECT * FROM c ");
          out.print("<table border=2>");
          out.print("<tr>");
            out.print("<th width=100>"+"name");
            out.print("<th width=100>"+"age");
          out.print("</TR>");
          while(rs.next())
       {  out.print("<tr>");
             out.print("<td >"+rs.getString(1)+"</td>"); 
             out.print("<td >"+rs.getString(2)+"</td>");
          out.print("</tr>") ; 
        }
        out.print("</table>");
        con.close();
     }
   catch(SQLException e1) 
     {  out.print(e1);
     }
 %>
</BODY></HTML>


將寫好的檔案儲存到webapps\ROOT目錄下,mysql-jar驅動包放入apache-tomcat\lib目錄下

執行Tomcat,瀏覽器可檢視資料庫表(部分人可能會出現500錯誤,根據提示自己找問題吧)

二.MyEclipse連線

開啟Window-Open Perspective-MyEclipse Database Explorer

左邊空白新建new...


第一個空選擇MySQL Connector/J,Driver name填寫連結資料庫的名稱,自己起名字,最好可以識別自己的資料庫

Connection URL填寫使用mysql資料庫的地址(jdbc:mysql://<hostname>[<:3306>]/<dbname>)可改為(jdbc:mysql://localhost:3306/--),localhost表示的是連線本地資料庫,3306是連線mysql資料庫的埠號(不同的資料庫埠號也不相同),

User name 填寫資料庫使用者名稱mysql預設是root,Password填寫訪問mysql資料庫時的你所設定的密碼

下面的Add JARs是匯入MySQL驅動包,就上面說的那個,匯入好測試下



測試成功!下面來連線資料庫

右擊你建立的新連線點選Open another connection,輸入MySQL資料庫密碼檢視建立過得資料庫