Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 C# 的初学者和业余爱好者,我学会了如何连接和读取数据库文件中的表using System.Data.SqlClient;
using System.Data.SqlClient;
我使用 using方法连接到 dbsqlconnection并执行命令。现在我想在 Microsoft ReportViewer 中显示它的结果。如何将我的查询提交给 ReportViewer?sqlcommandExecuteReader
sqlconnection
sqlcommand
ExecuteReader
也许您想DataSet用查询结果填充 a,然后将其用作ReportViewer.
DataSet
ReportViewer
如何:用数据填充数据集
使用 ReportViewer 从数据集中构建报告