Datatable vs Dataset

后端 未结 7 2072
失恋的感觉
失恋的感觉 2020-11-29 20:02

I currently use a DataTable to get results from a database which I can use in my code.

However, many example on the web show using a DataSet instead and accessing th

7条回答
  •  一整个雨季
    2020-11-29 20:49

    One feature of the DataSet is that if you can call multiple select statements in your stored procedures, the DataSet will have one DataTable for each.

提交回复
热议问题