问题:我正在尝试使用 C# 中的 Oledb 接口将日期时间插入访问数据库。
黑客解决方案:在不使用 command.Properties 的情况下生成我的插入字符串
我可以毫无问题地将文本插入数据库,但是在尝试 datetime 时,我最终会遇到此错误:System.Data.OleDb.OleDbException {“标准表达式中的数据类型不匹配。”}
有几个与此类似的帖子,但可惜没有有效的解决方案。
这是我的代码:
void TransferData()
{
string instCmd = Get_InsertCommand(0); // hard coded table 0 for testing
Fill_ProductTable_ToInsert();
con.Open();
// It would be nice not to have to separate the date indexes
int[] textIndex = { 0, 1, 2, 3, 4, 7 };
int[] dateIndex = { 5, 6 };
try
{
foreach (DataRow row in DataToStore.Tables[0].Rows)
{
OleDbCommand command = new OleDbCommand();
command.Connection = con;
command.CommandText = instCmd;
foreach(int j in textIndex)
command.Parameters.AddWithValue("@" + j, row[j]);
foreach (int j in dateIndex)
{
// TESTING CODE
///////////////////////////////////////////////////////////////////////////
string input = "#\'" +DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss") +"\'#";
command.Parameters.AddWithValue("@" + j, input.ToString());
Program.WriteLine(input.ToString());
///////////////////////////////////////////////////////////////////////////
}
command.ExecuteNonQuery();
}
}
finally
{
con.Close();
}
}
string Get_InsertCommand(int i)
{
string sqlIns = "INSERT INTO " + DataToStore.Tables[0].TableName + " (";
string temp = "VALUES (";
for (int j = 0; j < expected_header[i].Length - 1; j++)
{
sqlIns += expected_header[i][j] + ", ";
temp += "@" + j + ", ";
}
int lastIndex = expected_header[i].Length -1;
sqlIns += expected_header[i][lastIndex] + ") ";
temp += "@" + lastIndex + ")";
sqlIns += temp;
return sqlIns;
}
在标记为测试代码的区域内,我尝试了我能想到的所有日期时间排列。我用 # 和 ' 尝试了每种格式 我尝试了以下格式:yyyy-MM-dd、yyyyMMdd、yyyy\MM\dd、yyyy/MM/dd
我还尝试将数据库设置为接受 ANSI-92 Sql
我的想法不多了。
注意:此代码设置为处理来自多个数据库的多个表,请注意循环...