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 created one jsp program like this
<@ page session="false"%>
<@ page import="java.io.*" import="java.sql."%>
<%try { PreparedStatement ps; Connectin con;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DrivergetConnection("jdbc:odbc:DNSName","scott","tiger"; ps=con.prepareStatement();
ResultSet rs=ps.executeQuery("select from Table1"); if(rs.next()) { out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
} } catch(Exception e) {} rs.close(); ps.close(); con.close();
%>
But now when i iam saving this program in JSP it is alright , when i opened the Tomcat and getting the necessary path then i clicked on the JSP file i,but i am not getting any thing in the internet Browser.i have given the data (Table1) in the database.so that data should come on the Browser. but not getting.So kindly the RoseIndia netizens help to solve the problem
View Answers
October 10, 2011 at 12:03 PM
Use the following code:
ResultSet rs=ps.executeQuery("select * from Table1");
while(rs.next()) {
out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
}
October 10, 2011 at 12:29 PM
Hi my friend roseinsia netizen has given me to execute the program by while instead of if but neither while nor if statements iam not getting the solution .Exactly what i have done is that ( i have a simple problem in jsp in the sense to get data from the database like oracle), I have created one jsp program like this
*<@ page session="false"%> <@ page import="java.io." import="java.sql."%>
<%try { PreparedStatement ps; Connectin con; Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); con=DrivergetConnection("jdbc:odbc:DNSName","scott","tiger"; ps=con.prepareStatement(); ResultSet rs=ps.executeQuery("select from Table1");
while(rs.next())
{ out.println(rs.getInt(1)); out.println(rs.getString(2)); out.println(rs.getString(3)); out.println(rs.getInt(4)); } } catch(Exception e) {}
rs.close(); ps.close(); con.close(); %>**
But now when i iam saving this program in JSP it is alright , when i opened the Tomcat and getting the necessary path then i clicked on the JSP file but i am not getting any thing in the internet Browser.i have given the data (Table1) in the database.so that data should come on the Browser. but not getting.So kindly the RoseIndia netizens help to solve the problem.
October 10, 2011 at 1:26 PM
You have used incorrect query. Actually you didn't clear which data you want to retrieve. Neither you have used * nor you have specifies particular field.So if you want to retrieve all the fields then use this code:
ResultSet rs=ps.executeQuery("select * from Table1");
while(rs.next()) {
out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
}
And if you want to retrieve the particular data then use this code:
ResultSet rs=ps.executeQuery("select * from Table1 where id=1");
if(rs.next()) {
out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
}
October 19, 2011 at 7:38 PM
hello
My Netizen friend has given the answer to retrieve data from the database by using servlet or jsp program by typing the output as like this below
ReusltSet rs=statement.executeQuery("select * from Table1)
while(rs.next()) {
out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
}
But still i am not gettin the output from the Browser.
i have a simple problem in jsp in the sense to get data from the database like oracle . I have created one jsp program like this
<@ page session="false"%>
<@ page import="java.io.*" import="java.sql."%>
<%try { PreparedStatement ps;
Connectin con;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con=DrivergetConnection("jdbc:odbc:DNSName","scott","tiger";
ps=con.prepareStatement();
ResultSet rs=ps.executeQuery("select from Table1");
if(rs.next()) { out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
}
} c
atch(Exception e) {} rs.close();
ps.close();
con.close();
%>
But now when i iam saving this program in JSP it is alright , when i opened the Tomcat and getting the necessary path then i clicked on the JSP file i,but i am not getting any thing in the internet Browser.i have given the data (Table1) in the database.so that data should come on the Browser. but not getting.So kindly the RoseIndia netizens help to solve the problem
January 28, 2012 at 7:34 PM
<@ page session="false"%>
<@ page import="java.io.*" import="java.sql.*"%>
<%try {
PreparedStatement ps=null;
Connectin con=null;
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); con=DriverManager.getConnection("jdbc:odbc:DNSName","scott","tiger");
ps=con.prepareStatement("select * from Table1");
ResultSet rs=ps.executeQuery();
while(rs.next())
{
out.println(rs.getInt(1));
out.println(rs.getString(2));
out.println(rs.getString(3));
out.println(rs.getInt(4));
} } catch(Exception e) {}
rs.close();
ps.close();
con.close(); %>
October 3, 2012 at 6:03 PM
ResultSet rs=ps.executeQuery("**select from Table1**");
**Incorrect statement:**
select from Table1
**Correct statement:**
select * from Table1
**Write code:**
ResultSet rs=ps.executeQuery("**select * from Table1**");
It's really work ......
Related Tutorials/Questions & Answers:
How to get data from Oracle database using JSPHow 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... in the sense to
get data from the
database like
oracle . I have created one
jsp Advertisements
fetch record from oracle database using jsp-servlet?fetch record
from oracle database using jsp-servlet?
how can i fetch
data from oracle database by
using jsp-servlet. i'm
using eclipse, tomcat server and
oracle database and creating
jsp pages and also
using servlet
how to get data from database into dropdownlist in jsphow to
get data from database into dropdownlist in jsp Can anybody tell me what is the problem in this code as i am not able to fetch the
data from... tutorial go through the link
JSP Get Data Into Dropdown list
From Database
JSP Get Data From DatabaseJSP Get Data From Database
In this section we will discuss about
how to
get data from database using
JSP.
To
get data from database to a
JSP page we... giving a simple example which lets you understand to fetch
data
from database oracle database backup using jsp oracle database backup
using jsp I want to take the backup of
oracle database.I want to write the code in
jsp ,so that when the page is loaded a backup of the
database is stored in one of my local drives.Is it possible to do
retrive data from database using jsp in struts? retrive
data from database using jsp in struts? *search.jsp*
<... searchProduct(SearchDTO sdto) {
String query="select *
from product...());
Connection con=DriverManager.getConnection("jdbc:
oracle:thin:@localhost:1521
retrieving from oracle database using jsp combo boxretrieving
from oracle database using jsp combo box hi this is my... name of the server has to display in the process name field
from the
oracle database please help on this i need code
using servlets please help me .
<
JSP Get Data Into Dropdown list From DatabaseJSP Get Data Into Dropdown list
From Database
In this section we will discuss....
This tutorial explains you that
how to fetch
data from database and set... for fetching
data from the
database and set
it into the dropdown list in
JSP 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
how to insert data in database using html+jsphow to insert
data in
database using html+jsp anyone know what... = null;
// declare a resultset that uses as a table for output
data from... and
database name. Here machine name id localhost and
database name
how to insert data into database using jsp & retrivehow to insert
data into
database using jsp & retrive Hello,
I have created 1 html page which contain username, password & submit button. in my oracle10G
database already contain table name admin which has name, password
How to show data from database in textbox in jsp How to show
data from database in textbox in
jsp How to show
data from database in textbox in
jsp
Here is an example that retrieve the particular record
from the
database and display it in textbox
using JSP.
<
retrive data from oracle to jspretrive
data from oracle to jsp i am a beginer in
jsp so please help... cost and manager name and storing it in the
data base.
in search proj fiel...();
psmt= conn.prepareStatement("select *
from CR_EMPLOYEE_DETAILS
unable to get datas from oracle databaseunable to
get datas
from oracle database Dear Sir,
I am again struck in my project..
i want to display
data from oracle database but i
get this error when i run the
jsp file in tomcat, I post my code below.. kindly let me
url parameter using retrive data from database in jspurl parameter
using retrive
data from database in jsp the user can... clicks the Preview button, you have to create a dynamic
jsp which should read the contents
from the db based on the event id. But this
jsp url should be a public
Acees data from database using combo box - JSP-ServletAcees
data from database using combo box please let me
how i access the
data from database when i select combo box combo2 having values Arts... value 11 or 12, otherwise combo box combo2 remain hide.
Here is
JSP's files
how to display data from jsp file into databasehow to display
data from jsp file into database this is a
jsp file...+",'"+email+"')");
out.println("
Data is successfully inserted into
database...(); in the below example. the error is "cannot convert
from java.sql.Statement
url parameter using retrive data from database in jspurl parameter
using retrive
data from database in jsp The user can... clicks the Preview button, you have to create a dynamic
jsp which should read the contents
from the db based on the event id. But this
jsp url should be a public url
how to display values from database into table using jsphow to display values
from database into table
using jsp I want to display values
from database into table based on condition in query,
how... the values
from database based on the bookname or authorname entered must be display
how to get data from checkboxes - JSP-Servlethow to
get data from checkboxes hi,
i got list of tables on screen by invoking webservices.when the user selects the tables by
using checkboxes, i need to
get only those tables to the next page where i can
get list of columns
Select tag to fetch data from oracle databaseSelect tag to fetch
data from oracle database I created a select box...
oracle database.Similarly when address will be selected by the user
from... of a student and when regnno is selected
from the drop down list by a user