SQLite Select 语句不返回任何内容 - C#

发布于 2024-11-04 13:04:07 字数 526 浏览 0 评论 0原文

相当简单的问题,我在数据库中有一个表,其中包含一列和十四行。

当尝试返回数据库中的所有行时,我尝试以下操作:

command = new SQLiteCommand("SELECT Value FROM Currency", connection);

然而,当我查看受影响的结果量(以及数组中缺少元素)时,我注意到以下内容:

Huh

显然那里什么也没有,我什至用两个单独的工具进行了检查以确认数据在那里。我执行此操作是否错误?我只是想迭代返回的值并将它们存储在数组中。

感谢您抽出时间! 编辑:

解决方案!

int i = 0;
while (dReader.Read())
{  
    _data[i] = Convert.ToSingle(dReader[0]);
    i++;     
}

这很好用:)

Fairly simple problem, I have a table in a database that contains one column and fourteen rows.

When trying to return all of the rows in the database I try the following:

command = new SQLiteCommand("SELECT Value FROM Currency", connection);

Yet when I look at the amount of results affected (And the lack of elements in my array) I notice the following:

Huh

Apparently there's nothing in there, I've even checked with two seperate tools that confirm the data is in there. Am I executing this incorrectly? I simply want to iterate over the values returned and store them in an array.

Thanks for your time!
Edit:

Solution!

int i = 0;
while (dReader.Read())
{  
    _data[i] = Convert.ToSingle(dReader[0]);
    i++;     
}

This works fine :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮凉 2024-11-11 13:04:07

SqlDataReader.RecordsAffected< /a> 对于选择查询不受影响。

获取更改的行数,
通过执行插入或删除
Transact-SQL 语句。

编辑:

while ( dReader.Read() )
{
    Console.WriteLine("Value " + dReader[0]);
}

SqlDataReader.RecordsAffected is not affected for select queries.

Gets the number of rows changed,
inserted, or deleted by execution of
the Transact-SQL statement.

EDIT:

while ( dReader.Read() )
{
    Console.WriteLine("Value " + dReader[0]);
}
走过海棠暮 2024-11-11 13:04:07

您不应该对

 while ( dReader.Read() )
{
    ....
}

结果集进行循环吗?

Shouldn't you be doing a

 while ( dReader.Read() )
{
    ....
}

to loop through your resultset?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文