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 an encrypted internet connection?
How can I know when I reach the last record in a table, since JDBC doesn't provide an EOF method?
Briefly tell about the jdbc architecture.
What is difference between odbc and jdbc?
What is thin driver in jdbc?
What are the new features available in jdbc 4.0?
What is type 4 jdbc driver?
What happens if we don't close the connection in jdbc?
I have the choice of manipulating database data using a byte[] or a java.sql.blob. Which has best performance?
java based application for hospital management
What is JDBC API and when do we use it?
Is it possible to connect to multiple databases simultaneously?
What is benefit of using preparedstatement in java?
Which jdbc drivers will run your program?
How do I receive a ResultSet from a stored procedure?