C# 代码将所有表从一个 mdb 文件复制到另一个 mdb 文件

发布于 2024-07-15 22:25:13 字数 374 浏览 4 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(2

难忘№最初的完美 2024-07-22 22:25:13

复制文件不是更容易吗?例如,

System.IO.File.Copy("source.mdb", "dest.mdb");

如果您只想要结构而不需要数据,您可以创建一个仅包含表的模板数据库并从中复制。

Wouldn't it be easier to just copy the file, e.g.

System.IO.File.Copy("source.mdb", "dest.mdb");

If you want only the structure without the data, you could make a template database with just the tables and copy from that.

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