Explain the JDBC Architecture?
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 is the use of statement in jdbc?
What is the difference between client and server database cursors?
how can connection with oracle10g with java
What does the jdbc databasemetadata interface?
What is the purpose of jdbc?
What is an escape syntax?
How can I manage special characters when I execute an insert query?
What is meant by connection string?
Why hibernate is better than jdbc?
How do you create Connection?
How to retrieve warnings in jdbc?