我收到错误“数据源不能为空。使用 :memory: 打开内存数据库”
这是我的连接字符串:
// Get Current Users App Data
string documentsFolder = Environment.GetFolderPath
(Environment.SpecialFolder.ApplicationData);
string[] tempstr = documentsFolder.Split('\\');
string tempstr1 = "";
documentsFolder += "\\Google\\Chrome\\User Data\\Default\\History";
if (tempstr[tempstr.Length - 1] != "Local")
{
for (int i = 0; i < tempstr.Length - 1; i++)
{
tempstr1 += tempstr[i] + "\\";
}
documentsFolder = tempstr1 + "Local\\Google\\Chrome\\User Data\\Default\\History";
}
// Check if directory exists
if (Directory.Exists(documentsFolder))
{
// return ExtractUserHistory(documentsFolder);
}
string connectionString;
connectionString = string.Format(@"DataSource={0}", documentsFolder);
这是我的联系:
SQLiteConnection conn = new SQLiteConnection(connectionString);
conn.Open();
谢谢你的帮助。