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
Is it possible to connect to multiple databases simultaneously?
What is jdbc odbc bridge?
What are the 4 types of jdbc drivers?
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,
What is jdbc and jpa?
What is DML?
How we can you use preparedstatement.
what is the best way, in terms of performance, to do multiple insert/update statements, a PreparedStatement or Batch Updates?
How to invoke Oracle Stored Procedure with Database Objects as IN/OUT?
how to retrieve sql exceptions
What is a rollback in jdbc?