How do you create Connection?

Answers were Sorted based on User's Feedback



How do you create Connection?..

Answer / p.kodanda rami reddy

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

How do you create Connection?..

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

How do you create Connection?..

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

How do you create Connection?..

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

How do you create Connection?..

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

Post New Answer

More JDBC Interview Questions

Explain the steps in writing a java program using jdbc?

0 Answers  


Explain the various types of locking system in jdbc?

0 Answers  


Explain the sequence of steps to connect to the database?

3 Answers   Wipro,


Does the database server have to be running Java or have Java support in order for my remote JDBC client app to access the database?

0 Answers  


What is jdbc in dbms?

0 Answers  






Is jdbc a framework?

0 Answers  


What is JDBC PreparedStatement?

0 Answers  


What is a jdbc connection string?

0 Answers  


What is type 4 jdbc driver?

0 Answers  


What is the return type of class.forname() method?

0 Answers  


Is java a database?

0 Answers  


Briefly tell about the jdbc architecture.

0 Answers  


Categories