Write a JSP program to connect to the oracle database and retrieves the employee data from the database and that data should be displayed on the web page in a tabular format
Answers
Explanation:
Then we have created a JSP file/page and make a database connection at the JSP page then write a SQL query "SELECT * from tableName" for retrieving the data from database table and execute this query using executeQuery(sql) method of Statement interface and store the result into ResultSet.
Overview of Querying for Data in Oracle Database
In outline, to query Oracle Database from a Java class to retrieve data, you must do the following:
Create a connection by using the OracleDataSource.getConnection method. This is covered in Chapter 3, "Connecting to Oracle Database".
Define your SQL statements with the methods available for the connection object. The createStatement method is used to define a SQL query statement.
Using the methods available for the statement, run your queries. You use the executeQuery method to run queries on the database and produce a set of rows that match the query conditions. These results are contained in a ResultSet object.
You use a ResultSet object to display the data in the application pages.
hope you can understand
❤✌