,如何给sqlite数据库文件加密?

用户投稿 233 0

关于“php_sqlite_password”的问题,小编就整理了【3】个相关介绍“php_sqlite_password”的解答:

如何给sqlite数据库文件加密?

给SQLite数据库加密解密的方法:

1、创建空的sqlite数据库。//数据库名的后缀你可以直接指定,甚至没有后缀都可以//方法一:创建一个空sqlite数据库,用IO的方式FileStream fs = File.Create(“c:\\test.db“)

;//方法二:用SQLiteConnectionSQLiteConnection.CreateFile(“c:\\test.db“);创建的数据库是个0字节的文件。

2、创建加密的空sqlite数据库//创建一个密码为password的空的sqlite数据库SQLiteConnection.CreateFile(“c:\\test2.db“); SQLiteConnection cnn = new SQLiteConnection(“Data Source=c:\\test2.db“); SQLiteConnection cnn = new SQLiteConnection(“Data Source=D:\\test2.db“);cnn.Open();cnn.ChangePassword(“password“)

怎样给SQLite数据库加密解密?

给SQLite数据库加密解密的方法:

1、创建空的sqlite数据库。

//数据库名的后缀你可以直接指定,甚至没有后缀都可以

//方法一:创建一个空sqlite数据库,用IO的方式

FileStream fs = File.Create(“c:\\test.db“);

//方法二:用SQLiteConnection

SQLiteConnection.CreateFile(“c:\\test.db“);

创建的数据库是个0字节的文件。

2、创建加密的空sqlite数据库

//创建一个密码为password的空的sqlite数据库

SQLiteConnection.CreateFile(“c:\\test2.db“);

SQLiteConnection cnn = new SQLiteConnection(“Data Source=c:\\test2.db“);

SQLiteConnection cnn = new SQLiteConnection(“Data Source=D:\\test2.db“);

cnn.Open();

cnn.ChangePassword(“password“);

3、给未加密的数据库加密

如何设置sqlite?

给sqlite数据库加密解密的方法:

1、创建空的sqlite数据库。

//数据库名的后缀你可以直接指定,甚至没有后缀都可以

//方法一:创建一个空sqlite数据库,用io的方式

filestreamfs=file.create(“c:\\test.db“);

//方法二:用sqliteconnection

sqliteconnection.createfile(“c:\\test.db“);

创建的数据库是个0字节的文件。

2、创建加密的空sqlite数据库

//创建一个密码为password的空的sqlite数据库

sqliteconnection.createfile(“c:\\test2.db“);

sqliteconnectioncnn=newsqliteconnection(“datasource=c:\\test2.db“);

sqliteconnectioncnn=newsqliteconnection(“datasource=d:\\test2.db“);

cnn.open();

cnn.changepassword(“password“);

3、给未加密的数据库加密

sqliteconnectioncnn=newsqliteconnection(“datasource=c:\\test.db“);

到此,以上就是小编对于“php_sqlite_password”的问题就介绍到这了,希望介绍关于“php_sqlite_password”的【3】点解答对大家有用。

抱歉,评论功能暂时关闭!