Is jdbc connection secure?
No Answer is Posted For this Question
Be the First to Post Answer
Which type of driver provides jdbc access via one or more odbc drivers?
Why do I get UnsatisfiedLinkError when I try to use my JDBC driver?
How to use JDBC API to call Stored Procedures?
What is the use of callablestatement? Name the method, which is used to prepare a callablestatement.
Why we use jdbc instead of odbc?
How do I start debugging problems related to the JDBC API?
If you are given a choice to implement the code to either insert a record or update if already exist, which approach will you follow ?
What is jdbc driver for sql server?
What are the different types of interfaces in the api component?
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 the role of class.forname while loading drivers?
What are the advantages of collection pools?