How do you create Connection?
Answers were Sorted based on User's Feedback
After loading the driver in order to refer the what kind of
database u communicate we Establish the connection with the
help of a static method called GETCONNECTION this is from
DRIVER MAMAGER.GETCONNECTION. accepting arguments as JDBC
URL ,USER NAME , PASSWORD
EX: DriverManager.getConnection
("jdbc:odbc:sid","scott","tiger");
here jdbc,odbc,sid -> is url and sid is service id.
scott - > is user name.
tiger - > is password.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 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 |
Answer / suresh kumar
to create connection first we have to load the driver using
class.forName(drivername)
then register the driver using DriverManager.getConnection()
afterwards you can create Statement object and u can
execute the qurey
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vikky jain
i think the one of easiest way to create a connection is
that we have to perform following steps
1. we have to define what is driver name, url address of
database , user name and password of database .
like it
String driverName = "com.mysql.jdbc.Driver";
String url ="jdbc:mysql://localhost:3309/test";
String userid ="root";
String password ="1234";
after it we have to load drivers whatever name we given above
//driver loading
Class.forName(driverName);
after loading drivers we need to get the connection by using
this
con = DriverManager.getConnection(url, userid, password);
if value of con is not null then connection has been created
where con is an object of Connection class.
if the value is null it means that there may be some
trouble in database connectivity so it may throw an error
named SQLException
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ramu
. To create connection first we have to load the driver using
class.forName(drivername)
. Get a connection to the database using DriverManager.getConnection()
after wards you can create Statement object and u can
execute the query
| Is This Answer Correct ? | 0 Yes | 0 No |
How MS-Access DB can be accessed over a network, using JDBC API?
Is jdbc and orm?
How can you retrieve data from the resultset using jdbc?
How are jdbc statements used?
What is difference between jdbc and odbc?
Which type of JDBC driver is the fastest one?
Why is odbc needed?
Discuss the significances of jdbc.
What is the fastest type of JDBC driver?
What does jdbc do?
What is jdbc odbc driver?
What is jdbc driver manager?