Home Answers Viewqa Java-Beginners How to get data from Oracle database using JSP

 
 


Venkatasitaramayya
How to get data from Oracle database using JSP
6 Answer(s)      a year and 7 months ago
Posted in : Java Beginners

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 Pages:
How to get data from Oracle database using JSP
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... in the sense to get data from the database like oracle . I have created one jsp
How to get the data from the database (Oracle) in console or in ie using servlet or jsp as Front end
How to get the data from the database (Oracle) in console or in ie using servlet or jsp as Front end  hello i have a simple problem in jsp in the sense to get data from the database like oracle . I have created one jsp
How to get the data from the database using Servlet or JSP program
How to get the data from the database using Servlet or JSP program  ... the problem   Get data from database using servlet Retrieve data from database using JSP Get data from database using JSP
how to read data from excel file through browse and insert into oracle database using jsp or oracle???
how to read data from excel file through browse and insert into oracle database using jsp or oracle???  sir.. i have number of excel sheets which... be inserted into oracle database.. please help me sir...   hi friend
how to load a table of data from oracle, to a jsp page using hashmap.
how to load a table of data from oracle, to a jsp page using hashmap.  I have a jsp page which ask for project ID,team name,member name according to this data i have to retrieve their details from the database(oracle). I have
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
JSP Get Data From Database
JSP 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... example which lets you understand to fetch data from database in JSP
how to get data from database into dropdownlist in jsp
how to get data from database into dropdownlist in jsp  //Customer Name: <select name="name"> <% try{ Class.forName...="select * from staff"; ResultSet rs=st.executeQuery(sql); while(rs.next
how to get data from database into dropdownlist in jsp
how 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   
unable to get datas from oracle database
unable 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
how to get data from database into dropdownlist in jsp
how to get data from database into dropdownlist in jsp  Customer Name:<select name="name"> <% try{ Class.forName...=con.createStatement(); String sql="select * from staff"; ResultSet rs
how to insert data in database using html+jsp
how 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 get data from DB in to Text box by using Jsp & Ajax
How to get data from DB in to Text box by using Jsp & Ajax   I want to get the data from database in to text box in a jsp page by using Ajax. If I... with a and from that i need to select the required value and i should store
Select tag to fetch data from oracle database
Select 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
How to Upload a file directly to Oracle database using JSP or Servlets?
How to Upload a file directly to Oracle database using JSP or Servlets?  Hi I want to upload a file(csv or excel) to Oracle 10g Database using JSP...;Upload File to Oracle Database</h2> <form id="form1" enctype
how to get the values to dropdownlist from oracle database
how to get the values to dropdownlist from oracle database   <...("jdbc:oracle:thin:@192.168.149.95:1521:MOBIRAC1","SCOTT","SCOTT"); Statement... * from countryname"); while(rs.next()){ %> <option value="<
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. <
How to get data from Excel sheet - Struts
How to get data from Excel sheet  Hi, I have an excel sheet with some data(including characters and numbers). Now i want read the data from excel sheet and display in console first then later insert this data into database
how to get data from checkboxes - JSP-Servlet
how 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
JSP Get Data Into Dropdown list From Database
JSP Get Data Into Dropdown list From Database In this section we will discuss... data from the database and set it into the dropdown list in JSP using MySQL.... This tutorial explains you that how to fetch data from database and set
error in uploading image from jsp to oracle 10g database
try to insert into the image into the database i got the above error please advice how to get rid of error   JSP upload image in Mysql database...error in uploading image from jsp to oracle 10g database  
retrive data from oracle to jsp
retrive 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
Java Connection to Oracle database
tool>>>Data source,in that forDNS name i typed Oracle and in TNS i culdn't... Service name .ONe more thing is that i am using Oracle9i ,so how to delete...Java Connection to Oracle database  HI I am ubable to connnect
retrieving from oracle database using jsp combo box
retrieving 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 . <
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
How retreive data from database without using post method in jsp - JSP-Servlet
How retreive data from database without using post method in jsp  Tell me how?  Hi Friend, If you don't want to use post method then use... the selected value from the combo box and get textbox value from another page
get data between date from msaccess database
get data between date from msaccess database  here is my code, i want to get data between date using jsp with msaccess.i stored date into database in string.when i got output it displayed before month data
how to add data dynamically from database into a dropdown list in a jsp
how to add data dynamically from database into a dropdown list in a jsp  hi friends i am doing a project in jsp and oracle as my database.In my... get dynamically from the database and whenever a new person has registered his
to get picture from ms access database by jsp-servlet....
to get picture from ms access database by jsp-servlet....  I have inserted a picture in ms access data base,,,how we can retrieve that picture by using jsp
selecting data from database
selecting data from database  how to select data from database using Dao in struts   Hi, You have to load the data from database using hibernate and send the data in a Java file object to jsp page. Please read at http
How to retrieve data from database by using combo box value in jsp? - JSP-Servlet
How to retrieve data from database by using combo box value in jsp?  Hello friend i want use only one jsp page.. but u give 2 pages... I want...="+emp_value xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url
how to retrieve data from database using combobox value without using request.getParameter in jsp - JSP-Servlet
how to retrieve data from database using combobox value without using request.getParameter in jsp  Answer pl
How to get sub category based on category from database using jsp and javascript.
How to get sub category based on category from database using jsp and javascript.  How to get sub category based on category from database using jsp and javascript
Read data from excel file and update database using jsp
Read data from excel file and update database using jsp  read data from excel file and update database using jsp Hi, I am using a MySQL database... upload excel file and update database using JSP ? Thanks in Advance
Oracle Books
and shove data inside of it, or you can learn how Oracle works and exploit..., functionality, and reliability of the Oracle database. The nearly 800 pages... Edge: "I enjoyed this book from the beginning 'til the end. The Oracle Edge
how to display data from database in jsp
how to display data from database in jsp  how to display data from database in jsp
how to get only checked data
how to get only checked data  my problem is that i have a jsp page on which i retrieve data from the database through servlet , on the jsp page... button it should redirect only checked data to other jsp page which is connected
how to get data using dropdownlist, textbox and search button in jsp
how to get data using dropdownlist, textbox and search button in jsp  Hi, I want to display data using jsp,javascript and mysql. My Q. is If i select an entry suppose 'title' from dropdownlist and give a title name 'partial dif
related retrieving value from oracle database
related retrieving value from oracle database  how we get the value from database in the given textbox
related retrieving value from oracle database
related retrieving value from oracle database  how we get the value from database in the given textbox
Display Data from Database in JSP
, to show data from the database click on the link that calls another .jsp file named...;title>display data from the table using jsp</title> </head> <body> <h2>Data from the table 'stu_info' of database 'student'</h2
how to create a bar chart in jsp by fetching value from oracle databse?
how to create a bar chart in jsp by fetching value from oracle databse?  i want to show the population of various states in a bar chart in my jsp page by fetching the data from my oracle table. i am using my eclipse as my IDE
To retrive data from database - Struts
To retrive data from database  How to get values ,when i select a select box in jsp and has to get values in textbox automatically from database? eg... come to jsp page automatically from database
java script unable to connect to oracle database and insert data
is to insert data from jsp to oracle database 8, so i create a table in oracle... to run the jsp file from tomcat i get this error.. let me know what i am doing...java script unable to connect to oracle database and insert data  
How to get the text from textarea in HTML and store it in database using javascript and jsp
How to get the text from textarea in HTML and store it in database using javascript and jsp  How to get the text from textarea in HTML and store it in database using javascript and jsp <script> function str() { <
Populate a combo box using data from a database
Populate a combo box using data from a database  Hi Guys, In need... to populate the first one, and then how to send the data off to a servlet and preform a search on the database for the values I want, but then how do I pass that back
How to retrieve data by using combo box value in jsp? - JSP-Servlet
How to retrieve data by using combo box value in jsp?  I am using a single jsp form.. i did not get from another form.. i do not use 2 jsp form.. all.... Note: I am using only this jsp form.. i do not use
get info from mysql using jsp and servlet
get info from mysql using jsp and servlet  HELLO! I wanna create a jsp page which able to let me get its name, phone and other info by asking the user to key in their email address from mysql database by using servlet and jsp too
Acees data from database using combo box - JSP-Servlet
Acees 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
jfreechart display from access database data.
to retrieve the data from the access database using prepared statement and then display...jfreechart display from access database data.  I have made a database... is to be done in a servlet.. Note that it is a access made database. How can I

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.