Home Answers Viewqa JDBC define resulset?define stored procedure? exmp

 
 


Nagendran
define resulset?define stored procedure? exmp
1 Answer(s)      a year ago
Posted in : JDBC

define resulset?define stored procedure? exmp

View Answers

May 9, 2012 at 4:24 PM


ResultSet: ResultSet is a java object that is used for database connectivity to hold the data returned by a select query. When we run a select query, it returns us the data with each row representing one logical group of data with a number of columns. JDBC ResultSet Example

Stored Procedure: A stored procedure is a named group of SQL statements that have been previously created and stored in the server database. Stored procedures accept input parameters so that a single procedure can be used over the network by several clients using different input data. And when the procedure is modified, all clients automatically get the new version. Stored procedures reduce network traffic and improve performance. Stored procedures can be used to help ensure the integrity of the database.

Call Stored Procedure









Related Pages:

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.