Add new column to table using DBCP


 

Add new column to table using DBCP

This tutorial demonstrate how to add new column to the table using DBCP. If the table already have existing column with data inside then the new column will have the null value to all its respective rows.

This tutorial demonstrate how to add new column to the table using DBCP. If the table already have existing column with data inside then the new column will have the null value to all its respective rows.

Code:

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

public class AddColumn {
  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();
        int n = st
        .executeUpdate("ALTER TABLE emp ADD phone integer(15)");
        System.out.println("Column added !!!");
      catch (SQLException s) {
        System.out.println("No field added");
      }
    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:

Ads