What does adapter class provide?
No Answer is Posted For this Question
Be the First to Post Answer
code to insert values/rows into oracle database from a java swing textfield when a button is pressed(using preparedstatements)
what is meant by connection pooling?
How many types of resultset are there in jdbc?
Can resultset be null in java?
How to store images in database?
How to get a whole row of data at once?
what is the current version of JDBC? and explain its features?
What are the factors that the jdbc driver performance depends upon?
What is an outer join?
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,
After creating conntinpool in weblogic how to write the code in programe where i can use that pool object in the programe connecting to the database and how to debug programe withou eclipse
What is the jdbc rowset?