假设我有一张表,我想解析它的数据。例如,表 abc 有一个名为 的列Seq
。我想通过列解析Seq
,看看是否有任何违规行为。示例:如果有一个数字 > 10,我想让用户知道。
我收到 2 个错误,一个与数据类型有关,另一个与我的列表有关。我打算用列表做的是用它通过消息框向用户显示不规则,
我根本不知道多少语法所以这就是我的想法:
string sql4 = "select * from abc";
SQLiteCommand command = new SQLiteCommand(sql4, sqlite_conn);
SQLiteDataReader reader = command.ExecuteReader();
Convert.ToInt32(reader);
while (reader.Read())
{
if (reader["Seq"] > 30) // Getting error: operator cannot be applied to
// type objects and int
{
Parse1.Add(reader["Seq"]);
// Another error saying that the best overloaded method for the string type int
// Has some invalid arguments
}
}
private void button7_Click(object sender, EventArgs e)
{
foreach (object o in Parse1)
{
MessageBox.Show(o.ToString());
}
}