私は MVC3 アプリケーションを作成しており、Ole db 接続を使用して Excel ファイルを読み取る必要がありますが、一部のマシンではすべての Excel 行を取得できず、他のマシンではすべてのデータを取得できます。以下は私のコードです:
var connectionString = string.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties=Excel 12.0 Xml", serverPath);
//Fill the dataset with information from the Hoja1 worksheet.
string SqlCommand="SELECT * FROM [sheet1$] ";
var adapter = new OleDbDataAdapter(SqlCommand, connectionString);
var ds = new DataSet();
adapter.Fill(ds, "results");
DataTable data = ds.Tables["results"];
この問題の理由を知る必要があります どうもありがとう