what is CallableStatement and what is its usage?



what is CallableStatement and what is its usage?..

Answer / checkout

Callable statement is the one of the SQL statement.
Callable statement usage, to execute stored procedures
using preparecall() method.

Is This Answer Correct ?    10 Yes 1 No

Post New Answer

More JDBC Interview Questions

What is odbc and jdbc drivers?

0 Answers  


In JDBC, All the API?s are interfaces? Where is the actual implementation?

3 Answers   HCL,


How to test jdbc connection to sql server?

0 Answers  


What is a java driver?

0 Answers  


signature of init method?

2 Answers  






What are the sailent features of JDBC 2.0?

7 Answers  


How do we load the drivers?

0 Answers  


Hi my doubt is that preparedStatement is a interface means which has no implemenation.plz go thru the code below String sql = "SELECT * FROM movies WHERE year_made = ?"; prest = con.prepareStatement(sql); prest.setInt(1,2002); ResultSet rs1 = prest.executeQuery(); Now setInt and executeQuery how it works since it is interface it does not have implementation how it works, how executeQuery returns result from database as executequery method has no implementation even in Statement interface.

4 Answers   Cybermate, Hexaware,


How to execute bulk number of queries at once?

3 Answers   Wipro,


Is jdbc secure?

0 Answers  


How is database middleware used to access legacy databases?

1 Answers  


What is jdbc explain?

0 Answers  


Categories