What are the different types of drivers under jdbc?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by metadata and why we are using it?
Why do you use a data source object for a connection?
What will happen when ResultSet is not closed?
What are the types of statements in jdbc?
What is odbc. how is it related to sql cli?
What is meant by dao?
MY code is: public class P1{ public static void main(String ar[]) { class.forName("java.lang.String"); } } errors i got are :New.java:5: error: <identifier> expected class.forName("java.lang.String"); ^ New.java:5: error: invalid method declaration; return type required class.forName("java.lang.String"); ^ New.java:5: error: illegal start of type class.forName("java.lang.String"); ^ New.java:7: error: reached end of file while parsing } ^ 4 errors HELP ME>......
How does jdbc driver work?
What are temp tables ?
What is Type-3 Driver and when this driver is used?
Which interface is responsible for transaction management in jdbc?
Statement, PrepareStatement and Callable all these are interfaces. Thought it is a interface how come we are creating objects and calling methods("preparestatement()") in it. In which class this method is defined. Please let me know. Thanks in advance. example: PreparedStatement pre = con.prepareStatement( "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");