Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how to use CallableStatement?
specially how to use their index given ..



how to use CallableStatement? specially how to use their index given ....

Answer / suresh

CallableStatement object is used to call the stored
procedure and stored procedure is nothing but it's block of
code and it's identified unique name

ex

CallableStatement cs=con.prepareCall();
cs.executeUpdate(Call"{procedure name}");


con is a Connection object
It has three parameter

IN
OUT
INOUT

IN parameter used to store any value to stored procedure
using setXX() method..

OUT parameter used to get the information or values from the
stored procedure using getXX() method,that object to
registered using registerOutParameter()

INOUT used to both store and get the information...

Is This Answer Correct ?    7 Yes 1 No

Post New Answer

More JDBC Interview Questions

What is in term of jdbc a datasource?

0 Answers  


Why do we need a jdbcrowset like wrapper around resultset?

0 Answers  


What causes the "No suitable driver" error?

0 Answers  


What are the main components of JDBC ?

0 Answers  


What is xe in oracle jdbc url?

0 Answers  


How to make updates to updatable result sets in jdbc?

0 Answers  


Why do we use jdbc?

0 Answers  


Diff bet.. Function and Trigger?

3 Answers   Logica CMG,


Does jdbc use ssl?

0 Answers  


What does the connection object represents?

0 Answers  


What is ODBC and JDBC? How do you connect the Database?

0 Answers  


What isolation level is used by the DBMS when inserting, updating and selecting rows from a database?

0 Answers  


Categories