Typical database commands : Database « Servlets « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Servlets » DatabaseScreenshots 
Typical database commands

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class DatabaseServlet extends HttpServlet {

  public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, java.io.IOException {

    String sql = "select * from atable";
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
    ResultSetMetaData rsm = null;

    response.setContentType("text/html");
    java.io.PrintWriter out = response.getWriter();
    out
        .println("<html><head><title>Typical Database Access</title></head><body>");
    out.println("<h2>Database info</h2>");
    out.println("<table border='1'><tr>");

    try {

      //load the database driver
      Class.forName("oracle.jdbc.driver.OracleDriver");

      //The JDBC URL for this Oracle database
      String url = "jdbc:oracle:thin:@142.3.169.178:1521:ORCL";

      //Create the java.sql.Connection to the database
      conn = DriverManager.getConnection(url, "usr""pass");

      //Create a statement for executing some SQL
      stmt = conn.createStatement();

      rs = stmt.executeQuery(sql);

      rsm = rs.getMetaData();

      int colCount = rsm.getColumnCount();

      //print column names
      for (int i = 1; i <= colCount; ++i) {

        out.println("<th>" + rsm.getColumnName(i"</th>");
      }

      out.println("</tr>");

      while (rs.next()) {

        out.println("<tr>");

        for (int i = 1; i <= colCount; ++i)
          out.println("<td>" + rs.getString(i"</td>");

        out.println("</tr>");

      }

    catch (Exception e) {

      throw new ServletException(e.getMessage());

    finally {

      try {

        stmt.close();
        conn.close();

      catch (SQLException sqle) {
      }

    }

    out.println("</table><br><br>");

    out.println("</body>");
    out.println("</html>");

    out.close();

  //doGet

}



           
       
Related examples in the same category
1. Servlets Database Query
2. Using JDBC in Servlets
3. Cached Connection Servlet
4. Transaction Connection Servlet
5. Session Login JDBC
6. JDBC and Servlet
7. Database and Servlet: Database MetaData
8. Database and Servlet: Store procedure
9. Database transaction
10. Process a raw SQL query; use ResultSetMetaData to format it
11. See Account
12. Guest Book Servlet
13. Dedicated Connection Servlet
14. Login Servlets
15. OCCI Connection Servlet
16. Get Column Names From ResultSet
17. Display Clob Servlet
18. Delete Blob From Servlet
19. Delete Clob From Servlet
20. Display Blob Servlet
21. Delete Clob From Oracle in a Servlet
22. Insert Clob to MySql Servlet
23. Update Clob data stored in MySql from a Servlet
w__ww._java2__s.__c_o___m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.