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 is the use of prepared statement?Ans:used to execute
pre compiled statement...so the question is when that
precompiled statement will be execute or
comiple?................

Answers were Sorted based on User's Feedback



What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / suri

when we sent a sql stmt in to oracle sever the server
splits statemts in to mutiple stmts, checks wheather valid
or not, if it is valid it is stored in the shared pool,
where as in the normal stmt parsing will be done every time
in prepared parsing will be done only once, naxt time
onwards values will be sent to the place holders

Is This Answer Correct ?    7 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / anjani kumar jha

prepared statement work same as the statement,but there r
some differences.

wen u submitting the query first time following things happened
1)compiling the query
2)executing the query
3)sending results back to the program

2nd time onwards
1)executing the query directly
2) sending results back to the program

Is This Answer Correct ?    6 Yes 1 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / narasimha rao bodagala

Hey this is an interface.

in the jdbc API they designed all the interface. which you
can use any interface based on that you can create the
implemented class method.

for this you can call in the core java design
pattern..abstract factory pattren..

you can try to see the API you can understand more.

preparedstatement---pre compiled statement.

first time it's compile and second time it will pass
dynamically.

make sure that should be done in DB side only once.

one time compile and next time passing the values into the
query then execute.

overall story behind this one time compile many times execute.

Is This Answer Correct ?    3 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / nagashree

Prepared statements are used due to its 2 advantages.

Advantages:
1) We can give dynamic values.
2) The statement will be compiled only once, it need not be
compiled each & every time we give new values.

Is This Answer Correct ?    3 Yes 2 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / ricky

can someone tell me how does preparedstatement works? its
an interface and where is the implementation?

Is This Answer Correct ?    1 Yes 0 No

What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question..

Answer / syed sadhik

It’s just pre compile SQL while run time it’s execute query.

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More JDBC Interview Questions

What is jdbc stand for?

0 Answers  


What are the differences between setmaxrows(int) and setfetchsize(int)?

0 Answers  


What is url in jdbc connection?

0 Answers  


Why do we need jdbc?

0 Answers  


Explain the locking system in jdbc & its types?

0 Answers  


Diff bet.. Function and Trigger?

3 Answers   Logica CMG,


How do I insert an image file (or other raw data) into a database?

0 Answers  


Is jdbc and orm?

0 Answers  


What is jdbc template?

0 Answers  


What is an encrypted internet connection?

0 Answers  


java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }

6 Answers   CTS,


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

1 Answers  


Categories