What are stored procedures? How to call them?

Answers were Sorted based on User's Feedback



What are stored procedures? How to call them?..

Answer / hazarath k

Stored Procedure is a set of precompiled SQL statements
(i.e., ready for execution), which will be executed at
Database server(backend).
By using the Callable Statement,We can call the Stored
Procedure from front-end.Callable is an interface.Every
vendor can provide their own implementation classes for
this intercace.By using this Callable Statement, we can
call the Stored Procedure/Stored Function.

Ex/Syntax:
Connection con=DriverManager.getConnection("---
","UID","PWD");
CallableStatement cstmt=con.prepareCall('{call
ProcedureName}');

Is This Answer Correct ?    2 Yes 0 No

What are stored procedures? How to call them?..

Answer / guest

Stored procedures are stored programs in jdbc.pl/sql is a
stored procedure.they can be called from java by callable
statement.
CallableStatement st=con.prepareCall("{----}");

Is This Answer Correct ?    0 Yes 0 No

What are stored procedures? How to call them?..

Answer / subbu

A Stored procedure is a collection of sql statements that
are stored under a name & executed.when you create a stored
procedure all the steps like parsing,checking,compiling etc
are carried out.They can be called from java by using
prepareCall().

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JDBC Interview Questions

What does executequery return in java?

0 Answers  


How does a file store compare with a jdbc store?

0 Answers  


Is jdbc a web technology?

0 Answers  


What types of DataSource objects are specified in the Optional Package?

0 Answers  


Is jpa faster than jdbc?

0 Answers  






what is JDBC?

3 Answers   Wipro,


What is JDBC DataSource and what are it’s benefits?

0 Answers  


What does the jdbc resultsetmetadata interface?

0 Answers  


What is “dirty read” in JDBC? Which isolation level prevents dirty read?

0 Answers  


What is jdbc in java?

0 Answers  


What is jdbc servlet?

0 Answers  


What is jdbc vs odbc?

0 Answers  


Categories