How will you perform truncation using JDBC?
No Answer is Posted For this Question
Be the First to Post Answer
What are the three basic components of the odbc architecture?
Why isn't the java.sql.DriverManager class being found?
How can you make the connection using 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 is jdbc stand for?
What is jdbc connection?
What is database deadlock ? How can we avoid them?
How many packages are available in jdbc api?
How does a custom RowSetReader get called from a CachedRowSet?
I have written a program to connect to database using odbc.Can this Application run on any Platform????
What is Type-3 Driver and when this driver is used?
Differentiate between a statement and a preparedstatement.