Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();
    }
share|improve this question
1  
The JDBC driver is looking for the file name, not the sheet name ('G:\DATA\Sheet1$.XLS`), are you sure the file name is that? With a dollar sign? – Yishai Feb 17 '11 at 17:50
As per the code snippet, it's apparently the table name (sheet name) in ODBC database 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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.