コード例 #1
0
ファイル: SysLogDao.cs プロジェクト: qinfengwangyi/Qin.Blog
 /// <summary>
 /// 写入系统日志
 /// </summary>
 /// <param name="entity"></param>
 /// <returns></returns>
 public bool Insert(SysLog entity)
 {
     string sql = FillData.AppendSqlToInsert(entity);
     MySqlCommand cmd = new MySqlCommand(sql, DataBase.GetOpenConn4MySql());
     MySqlParameter[] para = FillData.AppendParas(entity); //拼接参数
     cmd.Parameters.AddRange(para); //添加参数
     int result = cmd.ExecuteNonQuery();
     if (result > 0)
     {
         return true;
     }
     return false;
 }
コード例 #2
0
ファイル: SysLogDao.cs プロジェクト: qinfengwangyi/Qin.Blog
 public int Update(SysLog model)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public bool Insert(SysLog entity)
 {
     return _ISysLogDao.Insert(entity);
 }