JSP串連MySql/MS SQL Server/Oracle資料庫連接方法[整理]

來源:互聯網
上載者:User

JSP串連MySql資料庫方法
首先先將MySql的資料庫連接驅動拷貝到Tomcat/common/lib包下
下載mysql-connector-java-5.1.6.zip
http://mysql.cs.pu.edu.tw/Downloads/Connector-J/mysql-connector-java-5.1.6.zip
配置Tomcat的虛擬目錄-略
建立jdbcMySql.jsp頁面
頁面代碼如下: 複製代碼 代碼如下:<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%
final String MYSQLDBDRIVER="org.gjt.mm.mysql.Driver";
final String MYSQLDBURL="jdbc:mysql://localhost/mldn";
final String MYSQLDBUSER="root";
final String MYSQLDBUSERPASS="root";
Connection con = null;
%>
<%
try{
Class.forName(MYSQLDBDRIVER);
con = DriverManager.getConnection(MYSQLDBURL,MYSQLDBUSER,MYSQLDBUSERPASS);
Statement stmt = con.createStatement();
String sql ="create table jobs(name varchar(32))";
//執行建立語句
stmt.executeUpdate(sql);
out.println("串連成功!");
stmt.close();
}catch(Exception e){
out.println(e);
}
%>

啟動Tomcat
地址欄輸入:http://localhost:8080/Demo/jdbcMySql.jsp
測試資料連線成功!
驗證資料庫
驗證成功!
-----串連MS SQL Server/Oracle的方法待續

相關文章

聯繫我們

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