What is JDBC and JDBC Driver?
What are four types of JDBC driver?
Are all the required JDBC drivers to establish connectivity to my database part of the JDK?
-
What is the fastest type of JDBC driver?
-
What's new in JDBC 4.0?
-
What causes the "No suitable driver" error?
-
What are the steps involved in establishing a JDBC connection?
-
Why isn't the java.sql.DriverManager class being found?
-
What are the common steps to execute a Query in JDBC?
-
How can you load the drivers?
-
How can you make the connection?
-
What is Connection pooling in JDBC?
-
Why do one get a NoClassDefFoundError exception when I try and load my driver?
-
Why sometimes programmer gets the error message “java.sql.DriverManager class” not being found? How can we remove these kind of errors?
-
What are the different types of Statements?
What does setAutoCommit do?
How can you use PreparedStatement?
What is a ResultSet?
-
What will Class.forName do while loading drivers?
-
How can you move the cursor in scrollable resultsets?
-
How can you retrieve data from the ResultSet?
-
What are the steps involved in establishing a JDBC connection?
-
How do I retrieve warnings?
-
How can you create JDBC statements and what are they?
How do you call a stored procedure from JDBC?
How can you move the cursor in scrollable resultsets?
What is the difference between TYPE_SCROLL_INSENSITIVE and TYPE_SCROLL_SENSITIVE?
-
How to Make Updates to Updatable ResultSets?
-
What is the difference between client and server database cursors?
-
Are prepared statements faster because they are compiled? if so, where and when are they compiled?
-
What advantage is there to using prepared statements if I am using connection pooling or closing the connection frequently to avoid resource/connection/cursor limitations?
-
Can I reuse a Statement or must I create a new one for each query?
-
How do you convert a java.sql.Timestamp to a java.util.Date?
-
What do you understand by connection timeout intervaal ?
-
What is the difference between setMaxRows( ) and SetFetchSize()?
-
What is the difference between the JDBC and Java Transaction API(JTA) ?
Posted in: