Beispiel #1
0
 public bool ExecuteSqlTran(Dictionary <string, MySqlParameterSql> commandinfo, ref string Msg)
 {
     try
     {
         int rows = _dal.ExecuteSqlTran(commandinfo);
         if (rows > 0)
         {
             Flag = true;
         }
     }
     catch (Exception ex)
     {
         Flag = false;
         Msg  = ex.Message;
     }
     return(Flag);
 }