3

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

谢谢你的帮助。

4

1 回答 1

6

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

@"Data Source={0}" 你必须放 Data Source 而不是 DataSource

希望能帮助到你。

于 2012-06-28T12:19:55.200 回答