What is jdbc stand for?
No Answer is Posted For this Question
Be the First to Post Answer
How do I connect to jdbc?
If you are given a choice to implement the code to either insert a record or update if already exist, which approach will you follow ?
Explain about Join?
What do you understand by jdbc driver and explain its types?
What do you understand by jdbc statements?
Why do you use a data source object for a connection?
RowSetInternal caller and returns void. What can I do in the readData method?
What is the function of drivermanager class?
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,
Which type of driver is unique in jdbc?
What is difference between java.util.Date and java.sql.Date?
How can I determine where a given table is referenced via foreign keys?