SQL Server CE 和 C#;使用 SQL Server CE DB 中的所有表填充数据集
如何使用 SQL Server CE 数据库中的所有表填充数据集。这可以在一个 SQL select 语句中实现吗?
我知道我可以使用需要从中获取数据的表的名称来调用单独的 select 语句,但我需要一个通用的解决方案,只需将 SQL Server CE 数据库中的所有表转储到数据集中。
谢谢
How would I Populate a DataSet with ALL the Tables from a SQL Server CE database. Is this possible in ONE SQL select statement?
I know that I can call separate select statements with the names of the table I need data from but I need a generic solution that just dumps all the tables from the SQL Server CE database into a Dataset.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很容易实现。
编辑:我想我在尝试使用 SQL CE 一次运行多个查询时也遇到了问题(即使使用行终止符
;
)。This works very easy.
Edit: I think I also had problems trying to run multiple queries in a single go with SQL CE (even with the line terminator
;
).