如何使用SQLite数据库的.db扩展名打开文件?
我已经下载了一个用于SQLite的数据库浏览器。 当我尝试打开数据库文件时,弹出一个新窗口,标题是“标题为SQLCipher加密”,询问用于加密的密码和文件大小(混淆了什么'文件大小'......)。
我有一个我管理的应用程序源代码以查找密码&尝试使用默认页面大小1024。
多次尝试但无法打开。
public void ReadRecord(string sql)
{
try
{
this.sqlite_cmd.CommandText = this.cSql;
this.sqlite_datareader = this.sqlite_cmd.ExecuteReader();
if (this.sqlite_datareader.Read())
{
this.sAddEdit = "E";
this.txt1.Tag = this.sqlite_datareader["id"];
this.txt1.Text = this.sqlite_datareader["f0"].ToString();
this.txt2.Text = this.sqlite_datareader["f1"].ToString();
this.txt3.Text = this.sqlite_datareader["f2"].ToString();
this.txt4.Text = this.sqlite_datareader["f3"].ToString();
this.txt5.Text = this.sqlite_datareader["f4"].ToString();
this.dtpListDate.Text = this.sqlite_datareader["f5"].ToString();
this.txt7.Text = this.sqlite_datareader["f6"].ToString();
this.txt8.Text = this.sqlite_datareader["f7"].ToString();
this.txt9.Text = this.sqlite_datareader["f8"].ToString();
this.txt10.Text = this.sqlite_datareader["f9"].ToString();
this.txt11.Text = this.sqlite_datareader["f10"].ToString();
this.txt12.Text = this.sqlite_datareader["f11"].ToString();
this.txt13.Text = this.sqlite_datareader["f12"].ToString();
this.txt14.Text = this.sqlite_datareader["f13"].ToString();
this.txt15.Text = this.sqlite_datareader["f14"].ToString();
this.txt16.Text = this.sqlite_datareader["f15"].ToString();
this.txt17.Text = this.sqlite_datareader["f16"].ToString();
this.txt18.Text = this.sqlite_datareader["f17"].ToString();
this.txt19.Text = this.sqlite_datareader["f18"].ToString();
this.txt20.Text = this.sqlite_datareader["f19"].ToString();
this.txt21.Text = this.sqlite_datareader["f20"].ToString();
this.txt22.Text = this.sqlite_datareader["f21"].ToString();
this.txt23.Text = this.sqlite_datareader["f22"].ToString();
this.txt24.Text = this.sqlite_datareader["f23"].ToString();
this.txt25.Text = this.sqlite_datareader["f24"].ToString();
this.txt26.Text = this.sqlite_datareader["f25"].ToString();
this.txt27.Text = this.sqlite_datareader["f26"].ToString();
this.txt28.Text = this.sqlite_datareader["f27"].ToString();
this.txt29.Text = this.sqlite_datareader["f28"].ToString();
this.txt30.Text = this.sqlite_datareader["f29"].ToString();
}
this.sqlite_datareader.Close();
}
catch (Exception exception)
{
MessageBox.Show("A Error" + exception.ToString() + " Occcured Please Try Again or contact supplier", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
在命名空间中,
using Microsoft.VisualBasic.PowerPacks;
using System;
using System.ComponentModel;
using System.Data;
using System.Data.SQLite;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
答案 0 :(得分:0)
1。关于您有关页面大小的问题, 请参阅SQLite Database file Format
1.3.2。页面大小 从偏移量16开始的两字节值确定数据库的页面大小。对于SQLite 3.7.0.1(2010-08-04)及更早版本,此值被解释为big-endian整数,并且必须是512到32768(含)之间的2的幂。从SQLite版本3.7.1(2010-08-23)开始,支持65536字节的页面大小。值65536将不适合两个字节的整数,因此要指定65536字节的页面大小,偏移量16处的值为0x00 0x01。此值可以解释为big-endian 1,并且可以看作表示65536页大小的幻数。或者,可以将两个字节的字段视为一个小端数字,并说它表示页面大小除以256。页面大小字段的这两种解释是等效的。
您可以在普通的sqlite3.exe命令行外壳程序中使用“ .dbinfo”命令来检查数据库的大小。第一个信息是尺寸
database page size: 4096
2。关于数据库解密 假设数据库已加密,并且您具有正确的密码(它以x'或0x开头吗?是否已设法使用数据库浏览器应用程序手动打开数据库?),您必须先解密数据库,然后才能阅读它。请参阅SQLite Encryption Extension Documentation,以了解有关SQLite加密(和解密)的更多信息。
我建议使用一些开放源码的书面密码。只需在Google上搜索一下,看看哪一个适合您。 here's an example cipher that might be good for your needs