How many ways that we can view a result set?
No Answer is Posted For this Question
Be the First to Post Answer
What is jdbc and jdbc drivers?
Why should we close database connections in java?
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,
Where is mysql jdbc driver located?
can we create a own jdbc driver? how can we create?
What are the common JDBC problems that you got and how do you solved them?
write down exceptions those appear in java programs when u write JDBC Programs?
What are the different types of JDBC drivers?
What is jdbc thin client?
How do I disallow NULL values in a table?
What are the factors that the jdbc driver performance depends upon?
How to insert and delete a row programmatically? (new feature in JDBC 2.0)