File extension .DB - What kind of database is it exactly?

后端 未结 5 1234
悲&欢浪女
悲&欢浪女 2021-02-15 18:47

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 erro

5条回答
  •  失恋的感觉
    2021-02-15 19:28

    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.

提交回复
热议问题