我用多线程FOR循环向数据库插入数据,全部失败;没有一条数据。然后我就不用多线程了,直接for循环SqlCommand cmd = new SqlCommand("insert into tb_custom_1 values('" + module + "','" + type + "','" + describe + "','" + webname + "','" + coding + "')", conn)
仍然是失败,,可是我断点调试时一步步的向下走,却成功插入数据了?这是怎么回事?
----------------------------------------------------------------------------------
这是我上面一个问题,,下面我想向前辈们请教一个多线程且高效稳定的插入sq数据l的方法。
下面是插入代码:- public void test_sql()
- {
- SqlConnection conn = new SqlConnection("Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=软件数据库");
- conn.Open();
- SqlCommand cmd = new SqlCommand();
- for (int i = 0; i < sql_add.Count; i++)
- {
- cmd.CommandText=("insert into tb_spider values('" + sql_add[i].ToString() + "','" + webname + "','是')");
- cmd.Connection = conn; //cmd.CommandType
- cmd.ExecuteNonQuery();
- }
- MessageBox.Show("完成!");
- } }
复制代码 |