数据适配器与 SQLCommand

发布于 2024-09-15 17:05:56 字数 282 浏览 2 评论 0原文

我对 ADO.Net 中的 SQL 数据适配器感到困惑。

以下有什么区别:

SqlDataAdapter adapter = new SqlDataAdapter("Select * from Course", sqlconn);

 SqlCommand Command = new SqlCommand("Select * from Course", sqlconn);

有人可以解释一下吗?

I am confused about the SQL Data Adapter in ADO.Net.

What is the difference between the below:

SqlDataAdapter adapter = new SqlDataAdapter("Select * from Course", sqlconn);

and

 SqlCommand Command = new SqlCommand("Select * from Course", sqlconn);

Can someone please explain?

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

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

发布评论

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

评论(1

凉薄对峙 2024-09-22 17:05:56

基本的答案是:本质上并没有太多。

SQLDataAdapter 使用 SQLCommand

主要区别是:

  1. DataAdapter 可以直接填充
    进入数据表,命令
    DataAdapter返回一个DataReader,
  2. 可以使用多个Commands来支持Select、Insert、
    更新和删除命令

因此,您将使用 Command 来让 DataReader 迭代它返回的所有内容。

您可以使用 DataAdapter 将其全部放入 DataTable 中以重用它,并支持将数据推送回数据库服务器。

The basic answer is: Not a lot in the guts of it.

SQLDataAdapter uses SQLCommand

The main differences are:

  1. DataAdapter can populate directly
    into a DataTable, the command
    returns a DataReader
  2. DataAdapter can use multiple Commands to support Select, Insert,
    Update and Delete commands

So you would use Command to get a DataReader to iterate once over everything it returns.

You would use DataAdapter to put it all into a DataTable to reuse it, and to support pushing data back to the DB server.

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