ReportViewer 和动态创建的数据集

发布于 2024-11-27 19:11:16 字数 105 浏览 0 评论 0原文

我看到 ReportViewer 对象可以从类或数据集中获取其数据。
如果我使用数据集方法,我需要创建一个报告可以识别的 XSD 文件。 有没有办法避免创建此 XSD 文件但仍使用数据集?

I saw that the ReportViewer object can get its data from a class or a dataset.
If I use the dataset method I need to create a XSD file that the report will know.
Is there a way to avoid creating this XSD file but still use datasets?

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

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

发布评论

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

评论(1

马蹄踏│碎落叶 2024-12-04 19:11:16

尝试在代码中动态使用非类型化数据集。创建它,填充它,然后将其设置为数据源。
就像下面的代码:

SqlCommand mySelectCommand = New SqlCommand("select * from customers", myConnection);
SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter(mySelectCommand);

DataSet myDataSet = new DataSet();
mySqlDataAdapter.Fill(myDataSet,"Customers");

在任何你想要的地方使用你的myDataSet

Try using non-typed DataSet in your code on the fly. Create it, fill it and then set it as datasource.
like following code :

SqlCommand mySelectCommand = New SqlCommand("select * from customers", myConnection);
SqlDataAdapter mySqlDataAdapter = new SqlDataAdapter(mySelectCommand);

DataSet myDataSet = new DataSet();
mySqlDataAdapter.Fill(myDataSet,"Customers");

Use your myDataSet wherever you want.

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