读取paradox DBF文件并导入H2数据库
我可以将DBF文件(我认为是paradox数据库的文件)导入H2数据库吗?
我认为一个好的解决方案是用java编写一个小包装器来读取dbf数据并保存在h2数据库中,有一个jdbc驱动程序可以在java中使用paradox吗?
谢谢。
can i import DBF files (i think it is files of paradox database) into H2 database?
I think a good solution is to write a small wrapper in java to read dbf data and save in h2 database, there is a jdbc driver to use paradox with java?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Paradox 文件不是 DBF。这些属于 dBASE。我认为 Paradox 文件具有 .DB 扩展名。无论如何,无论您正在处理的文件属于 Paradox 还是 dBASE,您都可以轻松地将数据转换为 H2 可以导入的格式。你的解决方案会起作用。
Paradox files are not DBF. These belong to dBASE. I think Paradox files have a .DB extension. In any case, whether the files you are working with belong to Paradox or dBASE, you can easily convert the data into a format H2 can import. Your solution would work.
我会将
.DBF
文件转换为.SQL
脚本(使用CREATE
和INSERT
)。互联网上似乎有很多软件可以提供帮助。我没有使用过其中任何一个,所以我无法推荐特定的一个。I would go for converting the
.DBF
files to.SQL
script (withCREATE
s andINSERT
s). It seems to pretty much software on the Internet which could help. I haven't used any of these, so I can't suggest a particular one.