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

Why can't I invoke the ResultSet methods afterLast and beforeFirst when the method next works?

0 Answers  


How to retrieve warnings in jdbc?

0 Answers  


Is there another way of dealing with the result set that could execute faster?

0 Answers  


What is the feature of jdbc v4?

0 Answers  


What is jdbc servlet?

0 Answers  






Explain the various types of locking system in jdbc?

0 Answers  


How do I write Greek ( or other non-ASCII/8859-1 ) characters to a database?

0 Answers  


Can we return resultset in java?

0 Answers  


How do you insert images into database using jdbc?

0 Answers  


Under what circumstances, that all four drivers are used?

0 Answers   TCS,


What are the types of jdbc drivers that exist?

0 Answers  


What are different types of JDBC Drivers?

0 Answers  


Categories