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
What are the advantages of collection pools?
Name different methods for getting streams.
What is jdbc driver manager?
What is a JDBC 2.0 DataSource?
What is JDBC Savepoint? How to use it?
What is jdbc odbc connection?
What are the three parts of a jdbc url?
What is the reason why we need a jdbcrowset like the wrapper around resultset?
What are the components of jdbc?
What is a jdbc connection string?
What is jdbc in java?
Explain the life cycle of jdbc.
What is odbc and jdbc in dbms?
Is possible to open a connection to a database with exclusive mode with JDBC?
How does a file store compare with a jdbc store?