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 / shaik
If ur doubt is "PreparedStatement is an interface, how can
we have an object for it" , then ans is.
PreparedStatement object is the object of one of the
implementation class(that implements PreparedStatement(I))
of PreparedStatement(I).
Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is jdbc oracle thin?
What is the return type of execute, executequery and executeupdate?
What do you mean by two phase commits?
What is device controller?
How to check jdbc connection in linux?
What is CLOB and BLOB datatypes in JDBC?
What are different types of ResultSet?
How many locking systems are there in jdbc?
What does the connection object represents?
What is jdbc stand for?
Describe odbc?
What are temp tables ?
What is an SQL Locator?
Is jdbc faster than odbc?
How can I connect mysql or oracle with java?