java與資料庫連接

來源:互聯網
上載者:User

1、用資料庫軟體(如:mysql)建立資料庫,在資料庫註冊時用到的資料庫名則為剛剛建立的資料

庫,若為資料來源名,則需ODBC配置。

2、將驅動程式放在D:\Tomcat 5.5\common\lib或相應的開發工具的lib下,

對D:\Tomcat 5.5\conf\web.xml修改,開啟web.xml,在</web-app>的前面添加以下內容:

<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/mysql</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

通過檔案夾導航到D:\Tomcat 5.5\conf\Catalina\localhost下,找到你的web應用對應的.xml文

件,如ROOT.xml,並在此檔案的下添入代碼:

<ResourceLink name="jdbc/mysql" global="jdbc/mysql"

type="javax.sql.DataSourcer"/>

到這裡,配置工作就基本完成了。

3、資料庫連接(註:以下為轉載)

一、jsp串連Oracle8/8i/9i資料庫(用thin模式)

testoracle.jsp如下:

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>
<html>
<body>
<%Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
String url="jdbc:oracle:thin:@localhost:1521:orcl";
//orcl為你的資料庫的SID
String user="scott";
String password="tiger";
Connection conn= DriverManager.getConnection(url,user,password);
Statement stmt=conn.createStatement
(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String sql="select * from test";
ResultSet rs=stmt.executeQuery(sql);
while(rs.next()) {%>
您的第一個欄位內容為:<%=rs.getString(1)%>
您的第二個欄位內容為:<%=rs.getString(2)%>
<%}%>
<%out.print("資料庫操作成功,恭喜你\");%>
<%rs.close();
stmt.close();
conn.close();
%>
</body>
</html>

相關文章

聯繫我們

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