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...


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 is the difference between ojdbc6 and ojdbc7?

0 Answers  


What is the difference between triggers and procedures?

1 Answers  


What is preparedstatement in jdbc?

0 Answers  


Is jdbc part of j2ee?

0 Answers  


What are the common tasks of JDBC?

0 Answers  


What is database deadlock ?

0 Answers  


What is jdbc and its types?

0 Answers  


Does the database server have to be running Java or have Java support in order for my remote JDBC client app to access the database?

0 Answers  


What is the use of getGeneratedKeys() method in Statement?

0 Answers  


can we define indexes on a foreign key? Explain pros and cons?

1 Answers  


How is database middleware used to access legacy databases?

1 Answers  


How many ways can you update a result set?

0 Answers  


Categories