Ejemplo n.º 1
0
 private int RunCommandWithTransatcion(VSM.Entities.BuTypeInfo ent, string vSql, IDbTransaction TRANS)
 {
     if (null == TRANS)
     {
         MySqlParameter[] paras = new MySqlParameter[ent.Column.Count];
         for (int i = 0; i < ent.Column.Count; i++)
         {
             paras[i] = new MySqlParameter();
             paras[i].ParameterName = ent.Column[i].FieldName;
             paras[i].DbType        = ent.Column[i].FieldType;
             paras[i].Value         = ent.Column[i].FieldValue;
         }
         return(DataBaseManage.ExecuteSql(vSql, paras));
     }
     else
     {
         System.Data.IDbCommand CM = TRANS.Connection.CreateCommand();
         CM.CommandText = vSql;
         CM.CommandType = CommandType.Text;
         CM.Transaction = TRANS;
         GetEntityDeleteParameter(CM, ent);
         try
         {
             return(CM.ExecuteNonQuery());
         }
         catch (System.Exception e)
         {
             if (isDebug)
             {
                 throw new Exception(e.Message);
             }
             return(0);
         }
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 得到列表
 /// </summary>
 /// <param name="ent"></param>
 /// <returns></returns>
 public List<BuTypeInfo> GetBuTypeInfoList(string Where)
 {
     List<BuTypeInfo> list = new List<BuTypeInfo>();
     using(DbDataReader reader = DataBaseManage.ExecuteReader(DalSql+Where))
     {
         while (reader.Read())
         {
            BuTypeInfo ent = new BuTypeInfo();
             SetEnt(ent, reader);
             list.Add(ent);
         }
     }
     return list;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// 根据TypeId得到 BuTypeInfo 实体
 /// </summary>
 /// <param name="ent"></param>
 /// <returns></returns>
 public BuTypeInfo GetBuTypeInfo(int TypeId)
 {
     BuTypeInfo ent = null;
     string sql = DalSql;
     sql = sql + " And  TypeId";
     MySqlParameter[] paras = new MySqlParameter[]
     {
         new MySqlParameter("TypeId",TypeId)
     };
     using(DbDataReader reader = DataBaseManage.ExecuteReader(sql, paras))
     {
         if (reader.Read())
         {
             ent = new BuTypeInfo();
             SetEnt(ent, reader);
         }
        		}
     return ent;
 }
Ejemplo n.º 4
0
 public void SetEnt(BuTypeInfo ent, IDataReader dr)
 {
     ent.TypeId = MyConvert.ToInt(dr["TypeId"]);
     ent.TypeName = MyConvert.ToString(dr["TypeName"]);
     ent.KindId = MyConvert.ToInt(dr["KindId"]);
 }