Could not find installable ISAM

C

Cdude

I am you this connection string

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\testsheet.xls;Extended
Properties=Excel 8.0;HDR=YES

I get this error.I have registered the ISAM dll

Could not find installable ISAM
 
V

Venu

I am you this connection string

Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\testsheet.xls;Extended
Properties=Excel 8.0;HDR=YES

I get this error.I have registered the ISAM dll

 Could not find installable ISAM

Hi Cdude,

Use this:
sConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" +
FilePath +
";Extended Properties=" + (char)34 + "Excel
12.0;HDR=YES;" + (char)34;
Hope it would help you.

Thank you,
Venu
 
S

sloan

9 times ouf of 10 .. it is an issue with the syntax/spelling/spacing of
your connection string.

As the previous poster suggested, try his and it that does not work

ANALLY GO THROUGH/OVER YOUR CONNECTION STRING.
Every space , semicolon, etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top