1
次のコードを使用してCSVファイルをインポートしています。CSV処理日付をインポートする
try
{
OleDbConnection ExcelConnection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + pathName + ";Extended Properties=Text;");
OleDbCommand ExcelCommand = new OleDbCommand(@"SELECT * FROM " + fileName, ExcelConnection);
OleDbDataAdapter ExcelAdapter = new OleDbDataAdapter(ExcelCommand);
ExcelConnection.Open();
DataSet ExcelDataSet = new DataSet();
ExcelAdapter.Fill(ExcelDataSet);
ExcelConnection.Close();
return ExcelDataSet;
}
catch
(Exception ex)
{
MessageBox.Show("Cannot read excel file");
return null;
}
ここ列は2011年10月19日10時08分56秒GMT
がオン
として値を有する場合
として19.102
誰も助けてくれますか?
よろしく、