JSP 串連MySQL配置與使用

來源:互聯網
上載者:User

一、軟體下載
直接到MySQL官網下載以下兩個工具:mysql-5.1.32-win32.msi、mysql-gui-tools-5.0-r17-win32.msi
前者是MySQL的安裝檔案,後者是MySQL Tool安裝檔案,包括JDBC.
二、環境配置
把mysql-connector-java-5.0.4-bin.jar從MySQL\MySQL Tools for 5.0\java\lib拷貝到D:\Tomcat 6.0\lib下,然後在classpath裡面加入D:\Tomcat 6.0\lib\mysql-connector-java-5.0.4-bin.jar即可。
配置這個的目的是讓你的java應用程式找到串連mysql的驅動。
拷貝這一步就是為JSP串連資料庫配置驅動。
三、JSP串連MySQL
建立資料庫Education,建立表UserInfo。現在就是嘗試用jsp串連mysql了。
建立測試頁面TestLinkDateBase.jsp
<%@ page contentType="text/html; charset=gb2312" %>
<%@ page language="java" %>
<%@ page import="com.mysql.jdbc.Driver" %>
<%@ page import="java.sql.*" %>
<%
//驅動程式名
String driverName="com.mysql.jdbc.Driver";
//資料庫使用者名稱
String userName="root";
//密碼
String userPasswd="123";
//資料庫名
String dbName="education";
//表名
String tableName="UserInfo";
//連接字串
String url="jdbc:mysql://localhost/"+dbName+"?user="+userName+"&password="+userPasswd;
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection=DriverManager.getConnection(url);
Statement statement = connection.createStatement();
String sql="SELECT * FROM "+tableName;
ResultSet rs = statement.executeQuery(sql);
//獲得資料結果集合
ResultSetMetaData rmeta = rs.getMetaData();
//確定資料集的列數,亦欄位數
int numColumns=rmeta.getColumnCount();
// 輸出每一個資料值
out.print("id");
out.print("|");
out.print("num");
out.print("<br>");
while(rs.next()) {
out.print(rs.getString(2)+" ");
out.print("|");
out.print(rs.getString(3));
out.print("<br>");
}
out.print("<br>");
out.print("資料庫操作成功,恭喜你");
rs.close();
statement.close();
connection.close();
%>
四、瀏覽頁面即可查看到資料顯示成功了!
相關文章

聯繫我們

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