将 datarow[] 转换为 xml。是否可以?

发布于 2024-09-05 20:17:58 字数 348 浏览 5 评论 0原文

我有一个应用程序,因为我正在使用这样的数据行对象。

DataRow[] drRow;
                drRow = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");

在此之后,我在所有更改之后对列进行一些更改,如下所示

drRow[0]["Allow"] = "Yes";

,我需要将该特定数据行作为 xml 保存到数据库中。 我可以通过 getdataset() 方法将数据集转换为 xml。但我只需要保存那个特定的数据行。是否可以?如果是,请帮助我。提前致谢..

I have one application, in that i am using a datarow object like this.

DataRow[] drRow;
                drRow = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");

After this i make some changes in columns like this

drRow[0]["Allow"] = "Yes";

after all the changes, i need to save that particular datarow as a xml to the db.
I can do the dataset to the xml by getdataset() method. But i need to save only that particular datarow. Is it Possible? If yes please help me. thanks in advance..

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

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

发布评论

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

评论(1

红颜悴 2024-09-12 20:17:58

恐怕这是不可能的。我建议你这样做。

    DataRow[] rows = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");
    rows[0]["Allow"] = "Yes";

    DataTable table = new DataTable();

    foreach (DataRow row in rows)
    {
        table.ImportRow(row);
    }

    table.WriteXml(""); // Take this into database.

I'm afraid this is not possible. I recommend you to do it this way.

    DataRow[] rows = _dsmenu.Tables["tblmenu"].Select("id='" + DocID + "'");
    rows[0]["Allow"] = "Yes";

    DataTable table = new DataTable();

    foreach (DataRow row in rows)
    {
        table.ImportRow(row);
    }

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