R4R
Right Place For Right Person TM
R4R JavaJDBCJdbc TutorialsStep of the connectivity with MySQL
previous

Home

Next

Step of the connectivity with MySQL

 

The steps of developing the Java programs that access the MySQL database.

Step1: load the database driver and register it with the driver manager.

Class.forName("com.mysql.jdbc.Driver");

Step 2: In the second step we are create the connection to the database server.

Connection con = DriverManager.getConnection(
                                                "jdbc:mysql://localhost:3306/student", "system",
                                                "sam");

Step 3: In this step you can create the statement object by giving your Oracle.

PreparedStatement stm=con.prepareStatement(“select * from sam”);



Step 4: Now you can execute the SQL query and retrieve the data in the form of ResultSet. In case of delete or update you can execute the SQL and get the information about the SQL execution like no of records deleted or modified etc.

ResultSet rset= stm.executeQuery();

Step 5: Finally you should disconnect your database connection.

Con.close();

 

 

 

 

 

previous

Home

Next


Tolal:0 Click:
Show All Comments

Post Your Comments

Your Name:

Your Email ID :
Comments :
URL
  =* Enter SUM

New Updates

R4R
R4R
R4R
R4R
R4R
R4R
R4R
R4R