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 JDBC ResultSet?
What is jdbc oracle thin?
What are the advantages of collection pools?
How do I find ojdbc jar version?
Why do we need jdbc?
What is odbc and jdbc drivers?
What is the return type of execute, executequery and executeupdate?
What is the use of setFetchSize() and setMaxRows() methods in Statement?
Explain the difference between rowset vs. Resultset in jdbc?
What causes the "No suitable driver" error?
Explain the two tier and three tier architecture of jdbc.
What are the types of jdbc drivers that exist?
password, is stored in as plain text. What can I do to protect my passwords?
What does jdbc setmaxrows method do?
What is JDBC Statement?