I have a database file with .DB file extension. I have been googling and it looks like SQLite. I tried to connect to it using SQLite and SQLite3 drivers and I am getting an error "File is encrypted or not a database".

So I dont know if file is encrypted or it is not an SQLite database. Are there any other options what should the .DB extension should be? How do I find out that file is encrypted?

I tried to open it in the text editor and it is mostly a mess of charaters and some times there are words visible. I have uploaded the file here: http://cl.ly/3k0E01373r3v182a3p1o for the closer look.

Thank you for your hints and ideas what to do and how to work with this file.

link|improve this question
feedback

4 Answers

If you're on a Unix-like platform (Mac OS X, Linux, etc), you could try running file myfile.db to see if that can figure out what type of file it is. The file utility will inspect the beginning of the file, looking for any clues like magic numbers, headers, and so on to determine the type of the file.

link|improve this answer
Thank you! The file command sais "data". So its propably some kind of binary file and not SQLlite. – Macejkou Apr 21 '11 at 20:11
1  
The file command isn't going to know the difference between a binary file and encrypted SQLite database. – Steven Fisher Jul 6 '11 at 22:13
feedback

On a Unix-like system (or Cygwin under Windows), the strings utility will search a file for strings, and print them to stdout. Might help you narrow the field.

There are a lot of programs besides database programs that use a "db" extension, including

  • ArcView Object Database File (ESRI)
  • MultiEdit
  • Netscape
  • Palm

and so on. Google "file extensions" for some sites that catalog file extensions and the programs that use them.

link|improve this answer
feedback

Look at the first 30 bytes of the file (open it in Notepad or Notepad++ or another simple text viewer). There's usually some kind of tag or extension name in there.

Both SQLite 2 and SQLite 3 have a very clear message: "SQLite format 3" for SQLite 3 (obviously) and "** This file contains an SQLite 2.1 database **" for SQLite 2.

edit
Not that encrypted SQLite databases don't have a header like that, since the entire file is encrypted. See siyw's comment below.

link|improve this answer
Thanks there is nothing like that. So its propably not SQLite database file. – Macejkou Apr 21 '11 at 20:11
1  
re:"even encrypted SQLite databases should have a message like that" - it seems that they don't as the entire file is encrypted see link – siyw Jun 1 '11 at 11:52
Good point siyw! I edited my anwser. – Rudie Jun 1 '11 at 14:49
feedback

There's no conclusive way to know, because SQLite encrypts the entire database file, including the header.

Further, there's not a lot of difference to you, except for possible error text to a user if you're prompting them for a password.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.