コード例 #1
0
ファイル: LoginRecord.cs プロジェクト: ZwPandora/GIL
        public List <LoginRecord> GetList(string strWhere)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select ID,USERID,IPADDRESS,LOGINDATE,BY1,BY2");
            strSql.Append(" FROM LOGINRECORD ");
            if (strWhere.Trim() != "")
            {
                strSql.Append(" where " + strWhere);
            }
            DataSet            ds   = DbHelperSQL.Query(strSql.ToString());
            List <LoginRecord> list = new List <LoginRecord>();

            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                thesis.model.LoginRecord model = new thesis.model.LoginRecord();
                if (ds.Tables[0].Rows[i]["ID"].ToString() != "")
                {
                    model.ID = int.Parse(ds.Tables[0].Rows[i]["ID"].ToString());
                }
                model.USERID    = int.Parse(ds.Tables[0].Rows[i]["USERID"].ToString());
                model.IPADDRESS = ds.Tables[0].Rows[i]["IPADDRESS"].ToString();
                model.LOGINDATE = ds.Tables[0].Rows[i]["LOGINDATE"].ToString();
                model.BY1       = ds.Tables[0].Rows[i]["BY1"].ToString();
                model.BY2       = ds.Tables[0].Rows[i]["BY2"].ToString();
                list.Add(model);
            }
            return(list);
        }
コード例 #2
0
ファイル: LoginRecord.cs プロジェクト: ZwPandora/GIL
        public void Add(thesis.model.LoginRecord model)
        {
            model.ID = GetMaxID() + 1;
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into LOGINRECORD(");
            strSql.Append("ID,USERID,IPADDRESS,LOGINDATE,BY1,BY2");
            strSql.Append(")");
            strSql.Append(" values (");
            strSql.Append("" + model.ID + ",");
            strSql.Append("" + model.USERID + ",");
            strSql.Append("'" + model.IPADDRESS + "',");
            strSql.Append("'" + model.LOGINDATE + "',");
            strSql.Append("'" + model.BY1 + "',");
            strSql.Append("'" + model.BY2 + "'");
            strSql.Append(")");
            DbHelperSQL.ExecuteSql(strSql.ToString());
        }
コード例 #3
0
 public void Add(thesis.model.LoginRecord model)
 {
     dal.Add(model);
 }