我已经搜索了很多,但大多数Datareader问题/答案对都涉及通过第一行、不返回任何内容、使用Datareader获取单个值等。
需要明确的是,这是我夜校的一项作业,尽管只是其中的一小部分
函数将size取为int;该表有两个colmun:col1和col2,其中col1保持索引值为double,col2保持随机生成的double。表是工作簿中的excel工作表,不知道它是否相关。
表已使用ADO命令对象执行的insert语句填充,没有出现任何问题。
现在,datareader对象并没有向我提供由查询中的size/@size指定的行数(因为它在本例中扮演索引/UID的双重角色),而是提取看似随机的行数。我这么说似乎是因为这个数字似乎固定为"size"的值(例如,size=10->datareader在.executeRead()之后包含3行;size=2->datareader包含113行;size=5->446行)。
在调试过程中,我跟踪了查询的@size参数保持10.0我无法确定读者何时/为什么阅读。Read()将变为False。
我还用文字(5.0)替换了查询字符串中的参数;这导致标准表达式异常中的类型不匹配。但都是双打,还是我错过了什么?!我猜这会是一个好消息,但我现在不知所措。
正如你可能猜到的那样,我对编程还很陌生,所以请耐心等待。
是什么导致我的代码以这种方式运行?
private Double[] getSelection(int size, string table)
{
List<Double> list = new List<Double>();
Double[] toSort;
OleDbConnection connect = new OleDbConnection(cntstring);
connect.Open();
OleDbCommand command = connect.CreateCommand();
command.CommandType = CommandType.Text;
command.Parameters.Add("@size", OleDbType.Double).Value = Convert.ToDouble(size);
command.CommandText = String.Format("SELECT * FROM [{0}$] WHERE col1 < @size;", table);
try
{
OleDbDataReader reader = command.ExecuteReader();
Double outputReader;
while (reader.Read())
{
outputReader = Convert.ToDouble(reader.GetValue(1)); /for some reason (which is not my main concern at the moment) the reader.getDouble() method returned an invalid cast exception
list.Add(outputReader);
}
toSort = new double[list.Count()];
foreach (double d in list)
{
toSort[list.IndexOf(d)] = d;
}
string output = String.Format("{0},{1},{2},{3},{4},{5},{6},{7},{8},{9}", toSort[0], toSort[1], toSort[2], toSort[3], toSort[4], toSort[5], toSort[6], toSort[7], toSort[8], toSort[9]);
//to check for values; the String.Format is where i first encountered the index out of bounds exception
MessageBox.Show(output);
reader.Close();
reader.Dispose();
}
catch (Exception e)
{
MessageBox.Show(e.Message);
}
finally
{
connect.Close();
connect.Dispose();
return toSort;
}
}
您是否在select语句中尝试了@size周围的单引号,即
'@size'