OleDb:为什么我不能轻松地使用数据源中的完整架构和信息填充数据集?
这看起来真的很荒谬......我错过了什么?
我有一个包含 5 个表的 Access 数据库。
我想用数据库的全部内容填充数据集。
为什么它不能大致看起来像这样?:
dim dConnection as new oleDbConnection(connection info)
dim dAdapter as new oledbdataadapter(SelectCommand, dConnection)
dim dSet as oleDbDataset
da.fill(ds)
相反,我必须为每个表创建一个适配器,选择表名称(为什么?),填充架构,然后填充表。
对于一个巨大的数据库来说,这毫无价值……所以必须有一种更简单的方法来解决这个问题吗?
谢谢!!!!!!
This seems really ridiculous.. what am I missing?
I have an access database with 5 tables.
I want to fill a dataset with the entire contents of the database.
Why can't it roughly look like this?:
dim dConnection as new oleDbConnection(connection info)
dim dAdapter as new oledbdataadapter(SelectCommand, dConnection)
dim dSet as oleDbDataset
da.fill(ds)
Instead I'm having to create an adapter for EVERY table, tab the table name (why?), fill the schema, and then fill the table.
This would be worthless for a huge database... so there must be a simpler way to go about this?
Thanks!!!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 此 codeguru 论坛帖子 - 页面中的最后一个答案提供了用于将整个 Access 数据库加载到数据集中的函数:
See this codeguru forum post - the last answer in the page provides a function for loading the whole access database into a dataset: