Use JDBC ODBC bridge to read from Excel : Excel « Database SQL JDBC « Java






Use JDBC ODBC bridge to read from Excel

  
import java.sql.Connection;
import java.sql.DriverManager;

public class Main {
  public static void main(String[] argv) throws Exception {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String myDB = "jdbc:odbc:Driver={Microsoft Excel Driver (*.xls)};DBQ=c:/data.xls;"
        + "DriverID=22;READONLY=false";
    Connection con = DriverManager.getConnection(myDB, "", "");
  }
}

   
    
  








Related examples in the same category

1.Read data from Excel
2.Read data from Excel worksheet