4

How can I find out database type in order to examine data when all I have is the database. By database I mean the database folder under program root folder with bunch of files around database.db file?

Application using this database is running on Windows XP OS and is probably built on .NET technology stack.

Miki
  • 161

2 Answers2

7

You could open that file with some binary/hex editor, and than try to investigate wich DB type is it. Google litle bit around, start with list of file signature, and than see some more specific details for DB you usualy bump into.

0

You (and we) will need more information. You have the information in front of you, so it'll be easier for you to do this.

.db files could be from MSAccess, though if you're on a Linux system that would mean it probably wasn't an Access file.

Corel Paradox also saves .db files, as do many mobile devices. It could be an encrypted database file, in which case have fun.

You may try opening the file using any of the previously mentioned programs, preferably making a backup copy of the file first (obviously). You may also try opening the files with the SQLite Manager (http://www.sqlabs.com/sqlitemanager.php). I've used the SQLite for dealing with issues with iOS issues, but it's supposed to work with any sqlite databases.

music2myear
  • 49,799