how to retrieve data from multiple tables in jsp using javabeans
hey friends....
plz me to solve this question...
I have used the following code for retrieving data fromm two tables :
first table having fields:
bookid,name,phno
second table having field:
seat-id
But the data is not retrieved:why so???
1)first -.java file
package pack;
public class admin {
private int Book_id;
private String name;
public int getBook_id() {
return Book_id;
}
public void setBook_id(int Book_id) {
this.Book_id = Book_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPh_no() {
return ph_no;
}
public void setPh_no(int ph_no) {
this.ph_no = ph_no;
}
private int ph_no;
}
2). .java file
package pack;
import java.sql.*;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;
public class admindao {
Connection con;
public admindao(){
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/ips?user=root&password=mysql");
} catch (SQLException ex) {
Logger.getLogger(admindao.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
Logger.getLogger(admindao.class.getName()).log(Level.SEVERE, null, ex);
}
}
public ArrayList getadmin() {
ArrayList list = new ArrayList();
try {
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery("select B.book_id,B.name,B.phoneno from booking_table B");
while (rs.next()) {
admin u1 = new admin();
u1.setBook_id(rs.getInt(1));
u1.setName(rs.getString(2));
u1.setPh_no(rs.getInt(3));
// u1.setSeat_no(rs.getInt(2));
list.add(u1);
}
} catch (SQLException ex) {
Logger.getLogger(admindao.class.getName()).log(Level.SEVERE, null, ex);
}
return list;
}
}
3).second .java file for getting data from second table-
package pack;
public class table2 {
private int seat_no;
public int getSeat_no() {
return seat_no;
}
public void setSeat_no(int seat_no) {
this.seat_no = seat_no;
}
}
4)..java for second table_
package pack;
import java.sql.*;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;
public class table2dao{
Connection con1;
public table2dao(){
try {
Class.forName("com.mysql.jdbc.Driver");
con1 = DriverManager.getConnection("jdbc:mysql://localhost:3306/ips?user=root&password=mysql");
} catch (SQLException ex) {
Logger.getLogger(table2dao.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
Logger.getLogger(table2dao.class.getName()).log(Level.SEVERE, null, ex);
}
}
public ArrayList gettable2 (){
ArrayList list1 = new ArrayList();
try {
Statement stmt = con1.createStatement();
ResultSet rs1 = stmt.executeQuery("select seat_id from booked_table ");
while (rs1.next()) {
table2 u1 = new table2();
u1.setSeat_no(rs1.getInt(2));
list1.add(u1);
}
} catch (SQLException ex) {
Logger.getLogger(table2dao.class.getName()).log(Level.SEVERE, null, ex);
}
return list1;
}
}
5)..jsp file-
<%@page import="java.util.*"%>
<%@page import="java.util.ArrayList"%>
<%@page import="pack.*"%>
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
Untitled Document
View Answers
Related Tutorials/Questions & Answers:
Advertisements
Retrieve data from databse using where in JSPRetrieve data from databse
using where in JSP Hi, can somebody help me?
I have a
jsp page. in that i want to get
data from the database where...=request.getParameter("username");
String sql;
sql="SELECT *
FROM register WHERE
retrieve related data from database using jsp and mysqlretrieve related
data from database
using jsp and mysql Hi sir,
please give some example of
jsp code for retrieving mysql database values in
multiple dropdown list. if we change a value in a dropdown its related value must
Data fetch from multiple SQL tables - Hibernate multiple tables using left and right outer joins. I need to convert this JDBC
data... that would use table classes to
retrieve data from 8 or 9
tables.
Any example of HQL fetching
data from multiple tables would be a help.
I have tried
Retrieve multiple data from database into Table..... Retrieve multiple data from database into Table..... hi...........
I want to
Retrieve multiple data from database into Table but i am not able to....
i am only able to
retrieve one value not more than that. means
in my
Using criteria for multiple tablesUsing criteria for
multiple tables
How to join more than three
tables,those
tables must be maintain primary key relation ship
using Hql criteria & projections
Using criteria for multiple tablesUsing criteria for
multiple tables
How to join more than three
tables,those
tables must be maintain primary key relation ship
using Hql criteria & projections
retrieve data from database using jsf retrieve data from database
using jsf Hello
I want an example of source code to
retrieve data from database
i have a database (oracle) name as db1...),, name ,and city
I want after enter value in textbox according idauthor i
retrieve How to retrieve image from mysql database in JSP?How to
retrieve image
from mysql database in
JSP? Hi,
I need
JSP... to
retrieve image
from mysql database in
JSP?
Thanks
Hi,
You can write SQL query to find the
data from database and get the image
from resultset
using mysql select from multiple tables mysql select
from multiple tables how can i select the date field
from multiple tables in mysql?
"UNION" can be used to select
data from multiple tables in my sql...
for example
(SELECT *
from name where `name
Retrieve data from xml using servletsRetrieve data from xml
using servlets Hi plz send me the code for retrieving the
data from xml File
using Servlets.
Hi,
Do you want... File
using ServletADS_TO_REPLACE_2
Thanks
Hi,
Learn Get
Data From How to retrieve blob image from database in JSP?How to
retrieve blob image
from database in
JSP? Hello,
JSP is used... the blog image
from database.
How to
retrieve blob image
from database in
JSP?
Hi,
Please check the tutorial
Retrieve image
from database
using How to store and retrieve image from database in JSP?How to store and
retrieve image
from database in
JSP? Hi,
In one... and
retrieve image
from database in
JSP?
Thanks
HI,
You can use... the image. Check this example:
Retrieve image
from database
using Servlet.
Thanks
How to get data from Oracle database using JSP the answer to
retrieve data from the database by
using servlet or
jsp program...
How to get
data from Oracle database
using JSP hello i have a simple problem in
jsp in the sense to get
data from the database like oracle . I have
How to display data in jsp from dao using java beans?How to display
data in
jsp from dao
using java beans? Hi
I need to display
data in
jsp pulling
from dao
using java beans, Please can anyone give me the sample application with above topics. Any help would be highly appreciated
how to insert, retrieve data from,to db(code)....how to insert,
retrieve data from,to db(code).... Hi.....
i ve... that
data will b stored in db(m
using sybase).
2.also hw to
retrieve the
data from.../javascriptpagerefresh.shtml
http://www.roseindia.net/
jsp/user-registration-form-
using-jsp.shtml
How to Retrieve data from database in jspHow to
Retrieve data from database in
jsp
In this section we will discuss about
how to fetch
data from database table.
We will give a simple example which...
Here is the video tutorial of "
How to
retrieve data from database
how to insert, retrieve data from,to db(code)....how to insert,
retrieve data from,to db(code).... Hi, i have created... will b stored in db(m
using sybase).
2.also hw to
retrieve the
data from db. cn u...://www.roseindia.net/
jsp/user-registration-form-
using-jsp.shtml
How to pass multiple values from a servlet to JSP?How to pass
multiple values
from a servlet to
JSP? hi, I want to pass
multiple values form a servlet to
JSP.
Hw do i do that?
I am able to send one value at a time without any prb, but I am unable to carry
multiple (
from two
how to retrieve images from database to jsp?how to
retrieve images
from database to
jsp? Hi sir,i want to stores...=con.createStatement();
String strQuery = "select *
from data";
ResultSet rs...();
String strQuery = "select image
from data where id="+id;
ResultSet rs
how to retrieve blob data - JSP-Servlethow to
retrieve blob data
How to
retrieve the BLOB table having single row single column in Database containing memory information
using JSP...://www.roseindia.net/
jsp/
retrieve-image.shtml
Thanks