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.
Answer Posted / kaviarasan
Good Question .
Berofe Writing the prepared statement ...
every one of us ill load the driver by using
Class.forName("Some driver which has the Driver class")
Here the this Driver Class/object triggers out the other
classes in which that class implements the neccessary
interface for the operation ....
preparedStatement ps=connection.getPreparedstatement();
this function ill returns the object from the Driver
instancianted class
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the use of the statement in jdbc?
How can I instantiate and load a new CachedRowSet object from a non-JDBC source?
What does setautocommit do?
How can I retrieve a String or other object type without creating a new object each time?
What is @entity in java?
password, is stored in as plain text. What can I do to protect my passwords?
When do we get java.sql.SQLException: No suitable driver found?
What is the jdbc rowset?
Which database is used with java?
Which jdbc drivers will run your program?
What is an odbc driver?
Does jpa use jdbc?
Is jdbc an api?
How to use JDBC API to call Stored Procedures?
There is a method getColumnCount in the JDBC API. Is there a similar method to find the number of rows in a result set?