ho il seguente codice:Impossibile trovare ISAM installabile
string excelConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\db\suc.xls; Extended Properties=""Excel 12.0;HDR=YES;""";
// Create Connection to Excel Workbook
using (OleDbConnection connection =
new OleDbConnection(excelConnectionString))
{
OleDbCommand command = new OleDbCommand
("Select * FROM [Sheet1$]", connection);
connection.Open();
e ottengo il seguente errore:
Impossibile trovare ISAM installabile.
allo connection.Open()
. Qualche idea ?
possibile duplicato di [System.Data.OleDb.OleDbException: Impossibile trovare ISAM installabili] (http://stackoverflow.com/questions/11562267/system-data-oledb-oledbexception-could- non-find-installable-isam) – bummi