Home Tutorial Java Dbcp Insert record into a table using DBCP

 
 

Insert record into a table using DBCP
Posted on: April 3, 2010 at 12:00 AM
This tutorial demonstrate how to insert record into table using DBCP.

Code:

import java.sql.*;
import org.apache.commons.dbcp.BasicDataSource;

class InsertIntoTable {
  public static void main(String[] args) {
    BasicDataSource bds = new BasicDataSource();
    bds.setDriverClassName("com.mysql.jdbc.Driver");
    bds.setUrl("jdbc:mysql://localhost:3306/mydb");
    bds.setUsername("root");
    bds.setPassword("");
    try {
      Connection con = bds.getConnection();
      try {
        Statement st = con.createStatement();
        String QueryString = "INSERT INTO user_master1
(User_Name,UserId,User_Pwd) VALUES ('Mahendra',"

          "'mahendra25','1213456')";
        st.executeUpdate(QueryString);
        con.close();
      catch (SQLException s) {
        System.out.println("SQL code does not execute.");
      }
    catch (Exception e) {
      e.printStackTrace();
    }
  }
}

Directory structure of files:

In the lib folder place all required jar files ie. commons-collections.jar, commons-dbcp.jar, commons-pool.jar, j2ee.jar and mysql-connector-java-5.1.7-bin.jar

In the pathset.bat write following statement

set classpath=.;lib/commons-collections.jar;lib/commons-dbcp.jar;lib/commons-pool.jar;lib/j2ee.jar;lib/mysql-connector-java-5.1.7-bin.jar

Output:

 

Related Tags for Insert record into a table using DBCP :


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.