I have got an error in executing the below code, it says The Microsoft Jet database engine could not find the object 'G:\DATA\Sheet1$.XLS'. Make sure the object exists and that you spell its name and the path name correctly. the xls sheet is named correctly, i dono where is the mistake, here is the code:
public static void main(String[] args) {
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:accountmaster";
Connection conn1 =DriverManager.getConnection(url,"","");
Statement st = conn1.createStatement();
String query = "Select * from [Sheet1$]";
ResultSet rs = st.executeQuery(query);
while (rs.next())
{
String s = rs.getString("AccountID");
String s1 = rs.getString("ProjectID");
String s2 = rs.getString("PositionID");
insert_AM(s,s1,s2);
getAMDetails();
conn1.close();
}
accountmanager(which is apparently linked to a MS Excel file). Regardless, using JDBC to access XLS files is a bad idea. Excel is a spreadsheet, not a database. Use a real Excel Java API like Apache POI or JExcelAPI, not JDBC. Or just use a real database engine, not a spreadsheet. – BalusC Feb 17 '11 at 17:55