如何使用 c#.Net 打开 firebird .db 表文件

发布于 2024-09-14 13:12:39 字数 163 浏览 2 评论 0原文

我有一个 Firebird .fdb 文件,可以正常打开它。 但有些表是空的,我可以使用第三部分程序打开这些表的 .db 文件。这不是我开发的。

现在我需要使用 c#.net 从 firebird 的表中打开 .db 有人知道该怎么做吗? 我不想打开数据库、连接数据库等,只需打开 .db 文件。

I have a Firebird .fdb file and can open it fine.
But some tables are empty, and I can open the .db files of these tables using 3rd part programs. This was not developed by me.

Now I need to open a .db from a table from firebird using c#.net
Some knows how to do that?
I dont want to open the database, connect to it, etc, just open the .db file.

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

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

发布评论

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

评论(1

江湖彼岸 2024-09-21 13:12:39

如果您可以使用 Borland Database Desktop 打开这些 .db 文件,那么它们是 Paradox 表,而不是 Firebird 表。

因此,为了从 C# 应用程序访问该 .db 文件,您可以使用:

  • MS ODBC Paradox 驱动程序
  • MS Jet OLEDB

请记住,您可能必须安装/配置 BDE(Borland 数据库引擎),因此 MS 驱动程序将提供对 Paradox 表的全面支持。

If you can open those .db files using Borland Database Desktop, then they are Paradox tables and not Firebird ones.

So, in order to access that .db files from your C# app, you could use:

  • MS ODBC Paradox Driver
  • MS Jet OLEDB

Keep in mind that you may have to install/configure BDE (Borland Database Engine), so the MS drivers would provide full support on Paradox tables.

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