Tôi có đoạn mã sau:không thể tìm thấy cài đặt ISAM
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();
và tôi nhận được lỗi sau:
Không thể tìm ISAM cài đặt.
tại connection.Open()
. Bất kỳ ý tưởng?
thể trùng lặp của [System.Data.OleDb.OleDbException: Không thể tìm ISAM cài đặt] (http://stackoverflow.com/questions/11562267/system-data-oledb-oledbexception-could- not-find-installable-isam) – bummi