开发者

How can I determine which type of database is this?

开发者 https://www.devze.com 2023-02-03 16:11 出处:网络
I have a desktop so开发者_运维知识库ftware with a folder called Data. In this folder, I have many files called File001.app, File002.app, T1.app, Z3.app, etc...

I have a desktop so开发者_运维知识库ftware with a folder called Data. In this folder, I have many files called File001.app, File002.app, T1.app, Z3.app, etc...

When I try to open any of them, they all seem to be in binary format.

The application in written in Delphi.

So how can I know which type of of database is used (Firebird, MySQL, ?)

Thanks.


You could try running strings against those files and seeing whether there are any clues in the output.

strings was originally a neat Linux utility but if you are running on Windows (seems a reasonable guess) then you should download the SysInternals implemenation. Find it here.


look into the application's code and see the connection string. without application's code, or config files(if exists) there is hard to know the database type. If the code is unavailable the vendor's product should tell you database type.

best regards,


http://www.fileinfo.com/extension/app

This sounds like a custom file format to me, doesn't look like anything to do with MySQL or Delphi (not directly et least) and I don't think they have anything to do with Firebird either. I know little about Oracle, but they don't ring any bells. Do you have access to the source code?


As Pekka said, hard to say. But maybe it's the FoxPro file which are stored in dBase file format, but this is not sure.

0

精彩评论

暂无评论...
验证码 换一张
取 消