Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Natural Right Join

                         

In this program we are going to join the two table by using the servlets and the result will be displayed in the browser. This join will be natural right join. 

To join the tables firstly it is important to make a connection between the java class and the database. In our program we are using the MySql database. To join the table in a natural right join manner, it is important to have those tables in our database. First of all make a class named ServletNaturalRightJoiningTables. The name of the class should be such that it becomes clear that what the program is going to do. The logic of the program will be written inside the doGet() method which takes two arguments HttpServletRequest and HttpServletResponse. call the method getWriter() of the PrintWriter class, which is responsible for writing the contents on the browser. Our priority is to join the two tables so pass a query in prepareStatement() method which will return the PreparedStatement object. 

The result will be displayed to you by the object of the PrintWriter class. 

The code of the program is given below:

import java.sql.*;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

public class ServletNaturalRightJoiningTables extends HttpServlet{
  public void doGet(HttpServletRequest request, HttpServletResponse response)
                               throws ServletException, IOException{
    response.setContentType("text/html");
    PrintWriter pw = response.getWriter();
    String connectionURL = "jdbc:mysql://localhost/zulfiqar";
    Connection connection;
    try{
      Class.forName("com.mysql.jdbc.Driver");
      connection = DriverManager.getConnection(connectionURL, "root""admin");
      PreparedStatement pst = connection.prepareStatement("SELECT *FROM "+"emp_details"+"
                                          NATURAL RIGHT JOIN "
+"emp_sal");
      ResultSet rs = pst.executeQuery();
      pw.println("userId" "\t" "Firstname" "\t" "salary"+"<br>");
      while(rs.next()){
        String id = rs.getString("userId");
        String name = rs.getString("Name");
        String sal = rs.getString("salary");
        pw.println(id + "\t\t" + name + "\t\t" + sal + "<br>");
      }
    }
    catch (Exception e) {
      pw.println("The statement is not executed");
    }
  }
}

web.xml file for this program:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
 PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
 <servlet>
 <servlet-name>Zulfiqar</servlet-name>
 <servlet-class>ServletNaturalRightJoiningTables</servlet-class>
 </servlet>
 <servlet-mapping>
 <servlet-name>Zulfiqar</servlet-name>
 <url-pattern>/ServletNaturalRightJoiningTables</url-pattern>
 </servlet-mapping>
</web-app>

The output of the program is given below:

Download this example

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Join and Excel yourself with our Online instructor led training sessions
Training Courses
Tell A Friend
Your Friend Name

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.