private int RunCommandWithTransatcion(VSM.Entities.BuScheduleApply 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); } } }
/// <summary> /// 得到列表 /// </summary> /// <param name="ent"></param> /// <returns></returns> public List<BuScheduleApply> GetBuScheduleApplyList(string Where) { List<BuScheduleApply> list = new List<BuScheduleApply>(); using(DbDataReader reader = DataBaseManage.ExecuteReader(DalSql+Where)) { while (reader.Read()) { BuScheduleApply ent = new BuScheduleApply(); SetEnt(ent, reader); list.Add(ent); } } return list; }
/// <summary> /// 根据ApplyId得到 BuScheduleApply 实体 /// </summary> /// <param name="ent"></param> /// <returns></returns> public BuScheduleApply GetBuScheduleApply(string ApplyId) { BuScheduleApply ent = null; string sql = DalSql; sql = sql + " And ApplyId"; MySqlParameter[] paras = new MySqlParameter[] { new MySqlParameter("ApplyId",ApplyId) }; using(DbDataReader reader = DataBaseManage.ExecuteReader(sql, paras)) { if (reader.Read()) { ent = new BuScheduleApply(); SetEnt(ent, reader); } } return ent; }
public void SetEnt(BuScheduleApply ent, IDataReader dr) { ent.ApplyId = MyConvert.ToString(dr["ApplyId"]); ent.ApplyMan = MyConvert.ToString(dr["ApplyMan"]); ent.ApplyDate = MyConvert.ToDateTime(dr["ApplyDate"]); }