What are the types of statements in jdbc?
No Answer is Posted For this Question
Be the First to Post Answer
What happens if connection is not closed in jdbc?
How does jdbc connect to database?
Can resultset be null in java?
Does multiple concurrent open statements per connection are supported by the JDBC-ODBC Bridge?
What is odbc and jdbc drivers?
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,
code to insert values/rows into oracle database from a java swing textfield when a button is pressed(using preparedstatements)
How can you make the connection using jdbc?
What does the jdbc resultsetmetadata interface?
How a driver can be loaded?
What are the types of jdbc drivers that exist?
What are the higher level apis under development on top of jdbc currently?