Answer Posted / 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 |
Post New Answer View All Answers
Why would you use setautocommit(false) in jdbc?
What is the full form of jdbc?
Explain creation of statement object with connection method create method with help of an example.
What are the types of statements in jdbc?
What are dml and ddl?
What is jdbc and why is it required?
What does jdbc do?
What is encrypted connection?
What are the measures to connect to the db using jdbc?
Briefly tell about the jdbc architecture.
How does a custom RowSetReader get called from a CachedRowSet?
How we can you use preparedstatement.
How does jdbc driver work?
What is a lock in jdbc?
How do I set properties for a JDBC driver and where are the properties stored?