它是什么样的数据库

它是什么样的数据库

本文介绍了文件扩展名.DB - 它是什么样的数据库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个具有.DB文件扩展名的数据库文件。我一直在谷歌搜索,它看起来像SQLite。我试图连接到它使用SQLite和SQLite3驱动程序,我得到一个错误文件是加密或不是数据库。



所以我不知道文件是加密还是不是SQLite数据库。是否有其他选项.DB扩展名应该是什么?我如何发现该文件是加密的?



我试图在文本编辑器中打开它,它主要是一个混乱的charaters,有时有可见的词。我已在此处上传文件::




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.

解决方案

Marco Pontello's TrID is a great way to determine the type of any file.

Just download the executable and the latest definitions file into the same directory and then run TrID:

trid.exe "path/to/file.xyz"

It will output a list of possible file types for the file with a confidence rating. Here's a screenshot of using TrID to analyze a SQLite database file:

There's also a GUI version called TrIDNet:

这篇关于文件扩展名.DB - 它是什么样的数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 19:47