Linux 拨号vps windows公众号手机端

加密的sqlite数据库怎么打开

lewis 7年前 (2018-09-28) 阅读数 14 #VPS/云服务器

打开加密sqlite数据库的方法有以下两种

1.SQLiteConnection方法

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

cnn.SetPassword(“password“);

cnn.Open();

2.SQLiteConnectionStringBuilder方法

SQLiteConnectionStringBuilder builder = new SQLiteConnectionStringBuilder();

builder.DataSource = @”c:\test.db“;

builder.Password = @”password“;

SQLiteConnection cnn = new SQLiteConnection(builder.ConnectionString);

cnn .Open();

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门