我收到错误“数据源不能为空。使用: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();


谢谢你的帮助。

最佳答案

当连接字符串错误时,将给出该错误。

在您的@"Data Source={0}"
您必须放置数据源而不是数据源

希望能帮助到你。

关于c# - SQLite“数据源不能为空”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11244452/

10-10 20:06
查看更多