In asp.net I have a web service that I send a list of items to that needs to be inserted, updated or deleted in the MySql database.
MySqlConnection mysqlconn = new MySqlConnection(ConfigurationManager.ConnectionStrings["conn"].ConnectionString);
mysqlconn.Open();
MySqlCommand mysqlcmd = new MySqlCommand();
mysqlcmd.Connection = mysqlconn;
I'm using transactions for this:
using (MySqlTransaction mysqltransaction = mysqlconn.BeginTransaction())
{
using (mysqlcmd)
{
MySqlParameter parmItemid = new MySqlParameter("?itemid", MySqlDbType.Int32);
mysqlcmd.Parameters.Add(parmItemid);
MySqlParameter parmProductid = new MySqlParameter("?productid", MySqlDbType.Int32);
MySqlParameter parmAmount = new MySqlParameter("?amount", MySqlDbType.Int32);
mysqlcmd.Parameters.Add("?userid", userid);
foreach (Item item in list)
{
parmItemid.Value = item.id;
parmProductid.Value = item.productid;
parmAmount.Value = item.value;
if (item.type == 1)
{
mysqlcmd.CommandText = "INSERT INTO tblitem (itemid,userid,productid,value) VALUES (?itemid,?userid,?productid,?value)";
}
else if (item.type == 2)
{
mysqlcmd.CommandText = "UPDATE tblitem SET productid=?productid,value=?value WHERE userid=?userid AND itemid=?itemid";
}
else
{
mysqlcmd.CommandText = "DELETE FROM tblitem WHERE userid=?userid AND itemid=?itemid";
}
mysqlcmd.ExecuteNonQuery();
}
}
mysqltransaction.Commit();
}
I have a lot of traffic on my website and sometimes it seems like the database is totally locked up. (Even if I'm only using 5% of CPU and 25% of memory.) When this happens I can see in phpmyadmin, that all processes are queued up and just waiting.
My suspicion is that maybe sometimes deadlocks happens in this code above. Could that be possible? Do you recommend me to skip the transaction part in this code if it is not that important that all these operations run as one single operation?
My idea to add the transaction part from the beginning was because I read somewhere that this could give me better performance. Is that even true?
Thanks a lot!