加密,解密sqlite数据库
加密一个未加密的数据库或者更改一个加密数据库的密码,打开数据库,启动sqliteConnection的ChangePassword()函数
// Opens an unencrypted database
sqliteConnection cnn = newsqliteConnection("Data Source=c:\\test.db3");
cnn.open();
// Encrypts the database. The connection remains valID and usable afterwards.
cnn.ChangePassword("mypassword");
解密一个已加密的数据库调用l ChangePassword()将参数设为 NulL or "" :
// Opens an encrypted database
sqliteConnection cnn = newsqliteConnection("Data Source=c:\\test.db3;Password=mypassword");
cnn.open();
// Removes the encryption on an encrypted database.
cnn.ChangePassword("");
要打开一个已加密的数据库或者新建一个加密数据库,在打开或者新建前调用SetPassword()函数
// Opens an encrypted database by calling SetPassword()
sqliteConnection cnn = newsqliteConnection("Data Source=c:\\test.db3");
cnn.SetPassword(newbyte[] { 0xFF,0xEE,0xDD,0x10,0x20,0x30 });
cnn.open();
// The connection is Now usable
总结以上是内存溢出为你收集整理的加密,解密Sqlite数据库全部内容,希望文章能够帮你解决加密,解密Sqlite数据库所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)