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 the different types of statements?

Answers were Sorted based on User's Feedback



What are the different types of statements?..

Answer / chandrarekha

Statement interface----createStatement() method is useful
to create statement object and to execute simple queries...

PreparedStatement interface---derived from the Statement
interface...preparestatement() method used to create
preparedstatement object and used to execute queries with
unknown parameters or where in the parameters are provided
at the run-time

CallabaleStatement interface----derived from the
preparedstatement interface and helpful in executing stored
procedures...prepareCall() method is used to create the
callabalestatement object

Is This Answer Correct ?    45 Yes 6 No

What are the different types of statements?..

Answer / niranjanravi

statement
preparedstatement
callable sattement

Is This Answer Correct ?    29 Yes 9 No

What are the different types of statements?..

Answer / rashmi

there are 3 types of statements used in jdbc
------
1.createStatement()
2.preparedStatement()
3.callableStatement()


createStatement returns the object of statement.through this we can call methods belongs

to the statement interface.preparedStatement returns the object of preparedstatement.through this we can call methods belongs

to the preparedstatement interface.

The difference b/w statement and preparedstatement is :

if we use statement the sql querry parses by the database server each and every time.when

we send the request. but by using preparedstatement the sql querry parses only once and that

parsed querry is used every time.

for example if there are 100 sql statements by using statement 100 parsings are necessary.

but by using preparedStatement the parsing is happened only once.so we can save the 99 parsings.

The callablestatement is used to call the storedprocedures.

Is This Answer Correct ?    15 Yes 4 No

What are the different types of statements?..

Answer / lol

There are four types of statements(not no which).

Is This Answer Correct ?    8 Yes 15 No

Post New Answer

More JDBC Interview Questions

What are the differences between execute, executequery, and executeupdate?

0 Answers  


why we don't use the type 2 driver for connect to the database in jdbc?

1 Answers   TCS,


Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

0 Answers  


What are the differences between statement and preparedstatement interface?

0 Answers  


Why can't Tomcat find my Oracle JDBC drivers in classes111.zip?

0 Answers  


Explain jdbc savepoint?

0 Answers  


Once I have the Java 2 SDK, Standard Edition, from Sun, what else do I need to connect to a database?

0 Answers  


What does executeupdate return in java?

0 Answers  


how to retrieve sql exceptions

2 Answers   Bosch,


What are temp tables ?

0 Answers  


Difference between Dirty, commited ,phantom,repeatable reads?

3 Answers  


What is use of connection pooling?

0 Answers  


Categories