Is jdbc secure?
No Answer is Posted For this Question
Be the First to Post Answer
What is Type-1 Driver and when this driver is used?
Explain different types of locks in jdbc?
What are the steps required to execute a query in jdbc?
Which package is used for jdbc application?
How can you sort dates?
What is the meaning of connection?
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 are jdbc?
How can I retrieve a String or other object type without creating a new object each time?
How does JDBC differ from ODBC?
Explain the necessary steps to connect to the database in java?
What is the meaning of batch updates?