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 |
What is the difference between Minus, and Intersect?
How many types of resultset are there in jdbc?
State the three different ways in which you can create a table?
Is it possible to connect to multiple databases simultaneously? Using single statement can one update or extract data from multiple databases?
What are the measures to connect to the db using jdbc?
Where is jdbc used?
When do we get java.sql.SQLException: No suitable driver found?
How can we store the file in the oracle database?
How can we retrieve data from the resultset?
which scenarios we go for jdbc,and which scenario we go for connection polling and wat r advantages and disadvantages using connection pooling.
Explain the locking system in jdbc & its types?
How to make updates to updatable result sets in jdbc?