SQL | C# - 读者行

发布于 2025-01-23 11:36:09 字数 480 浏览 0 评论 0原文

我的MySqDataReader有一个小问题。我在MySQL中有数据,并且在下面有“名称”和x行。读者可以吸引所有这些内容,但输出中有一个字符串,看起来像“ firtsecondixd”,但我需要单词列表中的所有这些单词。代码是:

            while (reader.Read())
            {
                vystup.Add(reader[0].ToString());
            }
            connection.Close();
            string out1 = "";
            foreach (string outage in vystup)
            {
                out1 += outage + "\n";
            }
            return out1;

有人知道该怎么办吗?谢谢。

I have a small problem with MySqlDataReader. I have data in MySql and I have column "name" and X rows under. Reader reads sucessfully all of this but output is in one string and looks like "FirtSecondThird" but i need all of this words in list word by word. The code is:

            while (reader.Read())
            {
                vystup.Add(reader[0].ToString());
            }
            connection.Close();
            string out1 = "";
            foreach (string outage in vystup)
            {
                out1 += outage + "\n";
            }
            return out1;

Does anyone know what to do with it? Thanks.

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

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

发布评论

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

评论(1

半暖夏伤 2025-01-30 11:36:09

您可以使用

如果vystuplist< string>,其中包含以下项目
,“第一个”,“第二”,“第三”

然后
输出string.join(enviorment.newline,vystup)
将产生

“第一个”

“第二”

“第三”

You can use String.Join

if vystup is a List<string> which contains the following items
"first", "second","third"

then
outputting string.join(Enviorment.NewLine, vystup)
will yield

"first"

"second"

"third"

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