我不确定发生了什么。这段代码昨天工作正常但是今天当我尝试运行它时,我在标记的位置收到“指定的强制转换无效”错误。查询返回1和1之间的整数。 25.在Access数据库中,该字段的数据类型为“number”,字段大小为“长整数”。
有关如何纠正此问题的任何线索?
static void PopulateClientList()
{
Console.WriteLine("Populating Client List...");
Console.WriteLine("\r");
OleDbConnection conn = new OleDbConnection(strAccessConnABS);
string query = "SELECT DISTINCT Client FROM ORDERS WHERE Status = 'On Hold';";
OleDbCommand command = new OleDbCommand(query, conn);
conn.Open();
OleDbDataAdapter adapter = new OleDbDataAdapter(query, conn);
//OleDbDataReader reader = command.ExecuteReader();
DataTable dt = new DataTable();
try
{
//if (reader.HasRows)
//{
// while (reader.Read())
// {
//clientlist.Add(reader.GetInt32(0)); //cast not valid error happens here
//}
// }
adapter.Fill(dt);
if (dt.Rows.Count >= 1)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
if (dt.Rows[i][0].ToString() != "")
clientlist.Add((int)dt.Rows[i][0]);
}
}
}
catch (OleDbException ex)
{
}
finally
{
if (conn.State == ConnectionState.Open)
{
conn.Close();
}
}
}
答案 0 :(得分:1)
您的问题可能是超出Int32
的最大值的值可能已添加到您的表中。在此之前,您的代码不会抛出异常。
该字段的数据类型为“number”,字段大小为“长整数”。
那你为什么在这里读Int32
?:
clientlist.Add(reader.GetInt32(0)); //cast not valid error happens here
将其更改为:
clientlist.Add(reader.GetInt64(0));
根据clientlist
的内容,您必须更改其类型以接受Int64
。
答案 1 :(得分:0)
在Access数据库中,该字段的数据类型为“number” field size ='long integer'。
你没有使用很长时间:
clientlist.Add(reader.GetInt32(0)); //cast not valid error happens here -> Use GetInt64
我想有人从int&gt;更改了DB字段长?
答案 2 :(得分:0)
我刚刚注意到了这个问题。不知道怎么回事。在运行查询时数据库内部第一行是空白的。当读者读取并尝试将其添加到列表时,它不会这样做,因为它是一个空值。