Does JDBC support stored procedures?
No Answer is Posted For this Question
Be the First to Post Answer
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,
What causes no suitable driver error?
What is Normalization?
4 Answers Accenture, Atos Origin,
How to test jdbc connection to sql server?
What is isolation level? How to set it?
Briefly tell about the jdbc architecture.
Explain the role of driver in jdbc.
Explain the necessary steps to connect to the database in java?
How can we execute stored procedures using callablestatement?
What is addbatch jdbc?
How to handle when the database crashes while reading the data from the database?
Explain about the drive manager class working?