Example to connect to
the mysql database
For connecting java application with the mysql
database, you need to follow 5 steps to perform database connectivity.
In this example we are using MySql as the
database. So we need to know following informations for the mysql database:
- Driver
class: The
driver class for the mysql database is com.mysql.jdbc.Driver.
- Connection
URL: The
connection URL for the mysql database isjdbc:mysql://localhost:3306/sonoo where
jdbc is the API, mysql is the database, localhost is the server name on
which mysql is running, we may also use IP address, 3306 is the port
number and sonoo is the database name. We may use any database, in such
case, you need to replace the sonoo with your database name.
- Username: The default
username for the mysql database is root.
- Password: Password is
given by the user at the time of installing the mysql database. In this
example, we are going to use root as the password.
Let's first create a table in the mysql
database, but before creating table, we need to create database first.
1. create database sonoo;
2. use sonoo;
3. create table emp(id int(10),name varchar(40),age int(3));
Example to Connect Java Application with mysql
database
In this example, sonoo is the database name,
root is the username and password.
1. import java.sql.*;
2. class MysqlCon{
3. public static void main(String args[]){
4. try{
5. Class.forName("com.mysql.jdbc.Driver");
6.
7. Connection con=DriverManager.getConnection(
8. "jdbc:mysql://localhost:3306/sonoo","root","root");
9.
10. //here sonoo is database name, root is username and password
11.
12. Statement stmt=con.createStatement();
13.
14. ResultSet rs=stmt.executeQuery("select * from emp");
15.
16. while(rs.next())
17. System.out.println(rs.getInt(1)+" "+rs.getString(2)+" "+rs.getString(3));
18.
19. con.close();
20.
21. }catch(Exception e){ System.out.println(e);}
22.
23. }
24. }
The above example will fetch all the records of
emp table.
To connect java application with the mysql
database mysqlconnector.jar file is required to be loaded.
Two ways to load the jar file:
- paste
the mysqlconnector.jar file in jre/lib/ext folder
- set
classpath
1) paste the mysqlconnector.jar file in
JRE/lib/ext folder:
Download
the mysqlconnector.jar file. Go to jre/lib/ext folder and paste the jar file
here.
|
2) set classpath:
There
are two ways to set the classpath:
·
temporary
·
permament
|
How to set the temporary classpath
open
comman prompt and write:
|
1. C:>set classpath=c:\folder\mysql-connector-java-5.0.8-bin.jar;.;
How to set the permanent classpath
Go to environment variable then click on new
tab. In variable name write classpath and in variable value
paste the path to the mysqlconnector.jar file by appending
mysqlconnector.jar;.; as C:\folder\mysql-connector-java-5.0.8-bin.jar;.;
No comments:
Post a Comment