关于使用DBAccess的问题

发布于 2024-10-16 19:06:36 字数 107 浏览 1 评论 0原文

我需要使用 dbaccess 将 sql 数据库写入 C# 中的数据集。我不太确定该怎么做。有谁知道任何好的教程或对如何做到这一点有任何建议?如果您需要我提供更多信息,请告诉我。任何帮助表示赞赏。谢谢

I need to use dbaccess to to write a sql database to a dataset in c#. I am not quite sure how to do this. Does anyone know of any good tutorials or have any advice on how to do this? Let me know if you need more info from me. Any help is appreciated. Thanks

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

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

发布评论

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

评论(2

平安喜乐 2024-10-23 19:06:36

这是近乎规范的示例:

var sql = "SELECT * FROM myTable";

using (var connection = new SqlConnection(connectionString)
{
    connection.Open();

    var command = new SqlCommand(sql, connection);

    var adapter = new SqlDataAdapter(command);

    var dataSet = new DataSet();

    adapter.Fill(dataSet);
}

“connectionString”是提供商特定的字符串,它使系统能够连接到您的数据库。如果您不知道这应该是什么,这里是一个很好的起点:Connectionstrings.com

一旦您准备好进入下一个级别,请查看实体框架或 NHibernate。 HTH。

Here's the nigh-canonical example:

var sql = "SELECT * FROM myTable";

using (var connection = new SqlConnection(connectionString)
{
    connection.Open();

    var command = new SqlCommand(sql, connection);

    var adapter = new SqlDataAdapter(command);

    var dataSet = new DataSet();

    adapter.Fill(dataSet);
}

"connectionString" is the provider specific string which enables the system to connection to your database. If you don't know what this should be, here's a good place to start: Connectionstrings.com.

Once you're ready to move to the next level beyond this, look at Entity Framework or NHibernate. HTH.

逐鹿 2024-10-23 19:06:36

您可以从以下链接开始:

C# Station ADO.NET

< a href="http://www.java2s.com/Tutorial/CSharp/0560__ADO.Net/Catalog0560__ADO.Net.htm" rel="nofollow">ADO>net c#

MSDN

问候...所有本教程都有帮助并且易于学习..

This ate the link you can start of:

C# Station ADO.NET

ADO>net c#

MSDN

Regards... All this tutorial helps and easy to learn..

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