如何使用 .Net 读取 .cds 数据库 (TClientDataSet)
我有一个来自用 Delphi 编写的应用程序的旧数据库文件。我的任务是提取数据并将其移至 SQL 数据库。我知道它是 .cds 格式,使用 Delphi 的 TClientDataSet-Class。问题是:我没有 Delphi,没有文档,而且编写该应用程序的人几年前就离开了公司。所以,我的问题是:有没有什么方法(除了 Delphi 或文本解析)可以使用 Dot.net、Python、Ruby、Java 或 Perl 访问数据? 简单地“导出”到 XML 或 CSV 也可以。
I have an old databasefile from an application written in Delphi. My task is to extract the data, and move it to an SQL-Database. I know it is in .cds format which uses the TClientDataSet-Class from Delphi. The problem is: I have no Delphi, no documentation and the guy who has written the app left the company years ago. So, my question is: Is there any way (besides Delphi or text-parsing) to access the data with Dot.net, Python, Ruby, Java or Perl?
A simple "export" to XML or CSV would work too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TClientDataSet 可以写入cd 或XML。最简单的方法是使用 Delphi 的副本来编写一个简单的应用程序,该应用程序使用 TClientDataSet 来读取 cd 并写入 XML 文件(可能需要 30 分钟的工作)。 Delphi 的试用版现已推出。
TClientDataSet can write to cds or XML. The easiest way to do this would be to use a copy a Delphi to write a simple application that uses a TClientDataSet to read the cds and write an XML file (probably 30 minutes of effort). Trial versions of Delphi are available.