Answer Posted / mathivanan
Connection is the second step of JDBC followed by
Driver_Loading. It gives the connection between the
database Driver's Manager and our java program.
Syntax: Connection con_obj = DriverManager.getConnection
("url", "login_name", "password");
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the fastest type of JDBC driver?
Explain the steps in writing a java program using jdbc?
In which ways is driver class is registered with drive manager?
What are the common tasks of JDBC?
What packages are used by jdbc?
How MS-Access DB can be accessed over a network, using JDBC API?
What are the types of jdbc drivers that exist?
How a database driver can be loaded with jdbc 4.0 / java 6?
When do we use execute method in java jdbc?
What is a datasource in java?
Is jdbc connection secure?
Why is jdbc used?
What class.forname will do while loading drivers of jdbc?
What is SQL Warning? How to retrieve SQL warnings in the JDBC program?
What are the differences between setmaxrows(int) and setfetchsize(int)?