Sqlite数据库加密加密
程序员文章站
2022-03-09 22:36:57
...
Sqlite数据库加密。(C#连接加密的Sqlite数据库的方法)
参考地址[1]: https://www.jb51.net/article/120279.htm
sqlite**安装包下载: https://download.csdn.net/download/yinchoushi8780/11170781
一、数据库加密
对数据加密分两种,一种是对数据库本身进行加密,另一种是对数据表中的数据进行加密,
如果SQLite数据库加密,我这里使用的一个管理工具叫SQLiteDeveloper,如下就可以加密数据库。
如果在工具中不提供密码的情况下打开数据库,会给你错误提示如下:
二、C#代码连接数据库
或者在C# 使用错误的密码也会给你错误提示:
System.Data.SQLite.SQLiteException:“file is encrypted or is not a database
正确的连接方式就是在连接字符串中提供正确的密码:
using System;
using System.Collections.Generic;
using System.Data.SQLite;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenSqliteDBByPwd
{
class Program
{
static void Main(string[] args)
{
string DB_PATH = "Data Source=EncryptedDB.db3; Password=1111";
using (SQLiteConnection con = new SQLiteConnection(DB_PATH))
{
con.Open();
string sqlStr = @"INSERT INTO Customer(CUST_NO,CUSTOMER)
VALUES
(
3001,
'Allen'
)";
using (SQLiteCommand cmd = new SQLiteCommand(sqlStr, con))
{
cmd.ExecuteNonQuery();
}
}
}
}
}
参考地址[1]: https://www.jb51.net/article/120279.htm
sqlite**安装包下载: https://download.csdn.net/download/yinchoushi8780/11170781