SQlite C#应用程序的一部分需要太长时间

时间:2013-11-20 15:27:35

标签: c# performance sqlite

我正在使用c#winforms和sqlite作为我的数据库创建一个应用程序。

它只是读取文本文件,将它们传输到数据库,解析它们,然后显示用户输出。

问题:SQlite部分非常慢。运行与填充数据库相关的代码大约需要3分钟!

我是编程新手,所以我真的不知道什么是关键问题。除了尝试优化我的代码以仅包含所需内容之外,是否有任何工具可以帮助提高应用程序的速度,清理背景垃圾等?

这是应用程序的缓慢部分:

 private void button4_Click(object sender, EventArgs e)
    {

          SQLiteConnection sqlite_conn;
          SQLiteCommand sqlite_cmd;
          SQLiteDataReader sqlite_datareader;


          sqlite_conn = new SQLiteConnection(@"Data Source=database.db;Version=3;");


          sqlite_conn.Open();

          // create a new SQL command:
          sqlite_cmd = sqlite_conn.CreateCommand();


          sqlite_cmd.CommandText = "CREATE TABLE IF NOT EXISTS 'abc' (Seq text, Field text, Desc text, Len text, Dec text, Typ text, Percnt text, Pop text, Alzero text, MaxLen text );";


          sqlite_cmd.ExecuteNonQuery();

          // **** SQLITE TRANSFER SECTION 1 - transfer values from list1 to table1 *****

          sqlite_cmd.CommandText = " DELETE FROM abc";
          sqlite_cmd.ExecuteNonQuery();

          sqlite_cmd.CommandText = "INSERT INTO abc (Seq, Field, Desc, Len, Dec, Typ, Percnt, Pop, Alzero, MaxLen) VALUES (@p1, @p2, @p3, @p4, @p5, @p6, @p7, @p8, @p9, @p10)";
          sqlite_cmd.Parameters.AddWithValue("@p1", 6);  // dummy initial values 
          sqlite_cmd.Parameters.AddWithValue("@p2", 878); 
          sqlite_cmd.Parameters.AddWithValue("@p3", 56);
          sqlite_cmd.Parameters.AddWithValue("@p4", 6);
          sqlite_cmd.Parameters.AddWithValue("@p5", 546);
          sqlite_cmd.Parameters.AddWithValue("@p6", 565);
          sqlite_cmd.Parameters.AddWithValue("@p7", 568);
          sqlite_cmd.Parameters.AddWithValue("@p8", 526);
          sqlite_cmd.Parameters.AddWithValue("@p9", 586);
          sqlite_cmd.Parameters.AddWithValue("@p10", 526);


          for (int i = 0; i < NumListValues; i += 10) // Filling SQlite table rows and columns with values from our list 
          {
              sqlite_cmd.Parameters.AddWithValue("@p1", list[i]);
              sqlite_cmd.Parameters.AddWithValue("@p2", list[i+1]);
              sqlite_cmd.Parameters.AddWithValue("@p3", list[i+2]);
              sqlite_cmd.Parameters.AddWithValue("@p4", list[i+3]);
              sqlite_cmd.Parameters.AddWithValue("@p5", list[i+4]);
              if (i > 490)
                  break; 
              sqlite_cmd.Parameters.AddWithValue("@p6", list[i+5]);
              sqlite_cmd.Parameters.AddWithValue("@p7", list[i+6]);
              sqlite_cmd.Parameters.AddWithValue("@p8", list[i+7]);
              sqlite_cmd.Parameters.AddWithValue("@p9", list[i+8]);
              sqlite_cmd.Parameters.AddWithValue("@p10", list[i+9]);
              sqlite_cmd.ExecuteNonQuery();

          }

          //   **** SQLITE TRANSFER SECTION 2 - transfer values from list2 to 2nd table *****

          sqlite_cmd.CommandText = "CREATE TABLE IF NOT EXISTS 't2' (YYMM text, MinDate text, MaxDate text, TotalTrans text, DebitTrans text, AMOUNTINDOCUMENTCURREN text );";

          sqlite_cmd.ExecuteNonQuery();

          sqlite_cmd.CommandText = " DELETE FROM t2";
          sqlite_cmd.ExecuteNonQuery();

          sqlite_cmd.CommandText = "INSERT INTO t2 (YYMM, MinDate, MaxDate, TotalTrans, DebitTrans, AMOUNTINDOCUMENTCURREN ) VALUES (@b1, @b2, @b3, @b4, @b5, @b6)";
          sqlite_cmd.Parameters.AddWithValue("@b1", 6);  // dummy initial values 
          sqlite_cmd.Parameters.AddWithValue("@b2", 878); 
          sqlite_cmd.Parameters.AddWithValue("@b3", 56);
          sqlite_cmd.Parameters.AddWithValue("@b4", 6);
          sqlite_cmd.Parameters.AddWithValue("@b5", 546);
          sqlite_cmd.Parameters.AddWithValue("@b6", 565);

         for (int i = 0; i < NumList2Values; i+= 6) // Filling SQlite table rows and columns with values from list2
         {
             sqlite_cmd.Parameters.AddWithValue("@b1", list2[i]);
             sqlite_cmd.Parameters.AddWithValue("@b2", list2[i+1]);
             sqlite_cmd.Parameters.AddWithValue("@b3", list2[i+2]);
             sqlite_cmd.Parameters.AddWithValue("@b4", list2[i+3]);
             sqlite_cmd.Parameters.AddWithValue("@b5", list2[i+4]);
             sqlite_cmd.Parameters.AddWithValue("@b6", list2[i+5]);
             sqlite_cmd.ExecuteNonQuery();
         }



        // Create table to transfer values from list 3

       sqlite_cmd.CommandText = "CREATE TABLE IF NOT EXISTS 't3' (YYWW text, MinDate text, MaxDate text, TotalTrans text, DebitTrans text, AMOUNTINDOCUMENTCURREN text );";

       sqlite_cmd.ExecuteNonQuery();

       sqlite_cmd.CommandText = " DELETE FROM t3";
       sqlite_cmd.ExecuteNonQuery();

       sqlite_cmd.CommandText = "INSERT INTO t3 (YYWW, MinDate, MaxDate, TotalTrans, DebitTrans, AMOUNTINDOCUMENTCURREN ) VALUES (@c1, @c2, @c3, @c4, @c5, @c6)";
       sqlite_cmd.Parameters.AddWithValue("@c1", 6);  // dummy initial values 
       sqlite_cmd.Parameters.AddWithValue("@c2", 878); 
       sqlite_cmd.Parameters.AddWithValue("@c3", 56);
       sqlite_cmd.Parameters.AddWithValue("@c4", 6);
       sqlite_cmd.Parameters.AddWithValue("@c5", 546);
       sqlite_cmd.Parameters.AddWithValue("@c6", 565);

       for (int i = 0; i < NumList3Values ; i+= 6) // Filling SQlite table rows and columns with values from list2
       {
           sqlite_cmd.Parameters.AddWithValue("@c1", list3[i]);
           sqlite_cmd.Parameters.AddWithValue("@c2", list3[i+1]);
           sqlite_cmd.Parameters.AddWithValue("@c3", list3[i+2]);
           sqlite_cmd.Parameters.AddWithValue("@c4", list3[i+3]);
           sqlite_cmd.Parameters.AddWithValue("@c5", list3[i+4]);
           sqlite_cmd.Parameters.AddWithValue("@c6", list3[i+5]);
           sqlite_cmd.ExecuteNonQuery();

       }
   }

1 个答案:

答案 0 :(得分:4)

我注意到的一些事情。

- 在进入下一个insert语句之前,你永远不会清除参数列表。我在你正在使用参数的每个查询之间运行'sqlite_cmd.Parameters.Clear()'。

- 您正在运行大量的插入语句,一些“创建表”语句和“从表中删除所有内容”语句。这些都可以在一次交易中完成,以大大加快速度。

要使用事务,请在开始时运行此SQL查询。

BEGIN TRANSACTION

完成后,您的插入会运行此查询。

COMMIT TRANSACTION

此外,如果您不熟悉使用SQLite,此链接可能会派上用场,列出所有可能的SQLite命令以及有关它们的功能的信息。

http://www.sqlite.org/lang.html