C# 代码将所有表从一个 mdb 文件复制到另一个 mdb 文件
如何使用 C# 代码将一个 mdb 文件中的所有表复制到另一个空白 mdb 文件中有人可以帮忙编写代码吗?
您好,
感谢您的文件复制建议,但执行该查询后出现此错误”
Error 1 Invalid token '(' in class, struct, or interface member declaration
C:\Documents and Settings\E457808\My Documents\Visual Studio 2005
\Projects\19032009\trymdbpulling\WindowsApplication1\Form1.cs
21 28 WindowsApplication1
how to copy all the tables from one mdb file to an other blank mdb file using C# code can anybody please help with the code?
Hi
Thanks for the file copy suggestion but after executing that query am getting this error"
Error 1 Invalid token '(' in class, struct, or interface member declaration
C:\Documents and Settings\E457808\My Documents\Visual Studio 2005
\Projects\19032009\trymdbpulling\WindowsApplication1\Form1.cs
21 28 WindowsApplication1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
复制文件不是更容易吗?例如,
如果您只想要结构而不需要数据,您可以创建一个仅包含表的模板数据库并从中复制。
Wouldn't it be easier to just copy the file, e.g.
If you want only the structure without the data, you could make a template database with just the tables and copy from that.
请参阅此批量复制示例: http://www.codeproject.com/KB/cs /CopyDBSchemaUsingSMO.aspx
See this example of bulk copying: http://www.codeproject.com/KB/cs/CopyDBSchemaUsingSMO.aspx