What do you mean by jdbc batch processing and what are the advantages of using jdbc batch processing?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about column name and getter method?
What are the differences between setmaxrows(int) and setfetchsize(int)?
What is the difference between Minus, and Intersect?
What is jdbc architecture in java?
Expalin the method of calling a stored procedure from jdbc.
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 happen if we set JDBC string to NULL?
How we store procedure in oralce for callable statements in jdbc
What are the Isolation level in JDBC transaction?
What is the purpose of the jdbc resultset interface?
How can a java objects be stored in database?
What is the use of callablestatement? Name the method, which is used to prepare a callablestatement.