Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How Servlet connects to Oracle

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how Servlet connects to Oracle. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Copy the driver $ORACL_HOME/jdbc/lib/ojdbc6.jar of oracle to D:\ Tomcat5.5.17\ webapps\ my\ WEB-INF\ lib. (because the jar package is required at run time)

Package test

Import java.io.IOException

Import java.io.PrintWriter

Import javax.servlet.ServletException

Import javax.servlet.http.HttpServlet

Import javax.servlet.http.HttpServletRequest

Import javax.servlet.http.HttpServletResponse

Import java.sql.*

Public class Conndb extends HttpServlet {

Public void doGet (HttpServletRequest request, HttpServletResponse response)

Throws ServletException, IOException {

Connection conn = null

Statement stmt = null

ResultSet rs = null

Response.setContentType ("text/html")

Response.setCharacterEncoding ("gb2312")

PrintWriter out = response.getWriter ()

Out.println ("")

Out.println ("Content:")

Try {

Class.forName ("oracle.jdbc.driver.OracleDriver")

Conn = DriverManager.getConnection ("jdbc:oracle:thin:@192.168.1.250:1521:test", "scott", "tiger")

Stmt = conn.createStatement ()

Rs = stmt.executeQuery ("select * from emp")

While (rs.next ()) {

Out.println ("")

Out.println ("" + rs.getString ("ename") + "")

Out.println ("" + rs.getString ("MGR") + "")

Out.println ("")

}

Out.println ("")

} catch (ClassNotFoundException e) {

E.printStackTrace ()

} catch (SQLException e) {

E.printStackTrace ()

} finally {

Try {

If (rs! = null) {

Rs.close ()

Rs = null

}

If (stmt! = null) {

Stmt.close ()

Stmt= null

}

If (conn! = null) {

Conn.close ()

Conn = null

}

} catch (SQLException e) {

E.printStackTrace ()

}

}

}

}

Thank you for reading! This is the end of the article on "how to connect Servlet to Oracle". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report