本文整理汇总了C#中IRecord.GetInt32方法的典型用法代码示例。如果您正苦于以下问题:C# IRecord.GetInt32方法的具体用法?C# IRecord.GetInt32怎么用?C# IRecord.GetInt32使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IRecord
的用法示例。
在下文中一共展示了IRecord.GetInt32方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MapUserInfo
internal static void MapUserInfo(IRecord record, DiscuzUserInfo userinfo)
{
int offset = 0;
userinfo.Uid = record.GetInt32(offset++);// Int32.Parse(reader["uid"].ToString());
userinfo.Username = record.GetStringOrEmpty(offset++);// reader["username"].ToString();
userinfo.Nickname = record.GetStringOrEmpty(offset++);//reader["nickname"].ToString();
userinfo.Password = record.GetStringOrEmpty(offset++);//reader["password"].ToString();
userinfo.Secques = record.GetStringOrEmpty(offset++);//reader["secques"].ToString();
userinfo.Gender = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["gender"].ToString());
userinfo.Adminid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["adminid"].ToString());
userinfo.Groupid = record.GetInt16OrDefault(offset++, 0);// Int16.Parse(reader["groupid"].ToString());
userinfo.Groupexpiry = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["groupexpiry"].ToString());
userinfo.Extgroupids = record.GetStringOrEmpty(offset++);// reader["extgroupids"].ToString();
userinfo.Regip = record.GetStringOrEmpty(offset++);// reader["regip"].ToString();
userinfo.Joindate = record.GetDateTimeOrEmpty(offset++);// reader["joindate"].ToString();
userinfo.Lastip = record.GetStringOrEmpty(offset++);// reader["lastip"].ToString();
userinfo.Lastvisit = record.GetDateTimeOrEmpty(offset++);//reader["lastvisit"].ToString();
userinfo.Lastactivity = record.GetDateTimeOrEmpty(offset++);//reader["lastactivity"].ToString();
userinfo.Lastpost = record.GetDateTimeOrEmpty(offset++);//reader["lastpost"].ToString();
userinfo.Lastpostid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["lastpostid"].ToString());
userinfo.Lastposttitle = record.GetStringOrEmpty(offset++);// reader["lastposttitle"].ToString();
userinfo.Posts = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["posts"].ToString());
userinfo.Digestposts = record.GetInt16OrDefault(offset++, 0);//Int16.Parse(reader["digestposts"].ToString());
userinfo.Oltime = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["oltime"].ToString());
userinfo.Pageviews = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["pageviews"].ToString());
userinfo.Credits = record.GetDecimal(offset++); //Int32.Parse(reader["credits"].ToString());
userinfo.Extcredits1 = record.GetDecimal(offset++);// float.Parse(reader["extcredits1"].ToString());
userinfo.Extcredits2 = record.GetDecimal(offset++);//float.Parse(reader["extcredits2"].ToString());
userinfo.Extcredits3 = record.GetDecimal(offset++);//float.Parse(reader["extcredits3"].ToString());
userinfo.Extcredits4 = record.GetDecimal(offset++);//float.Parse(reader["extcredits4"].ToString());
userinfo.Extcredits5 = record.GetDecimal(offset++);//float.Parse(reader["extcredits5"].ToString());
userinfo.Extcredits6 = record.GetDecimal(offset++);//float.Parse(reader["extcredits6"].ToString());
userinfo.Extcredits7 = record.GetDecimal(offset++);//float.Parse(reader["extcredits7"].ToString());
userinfo.Extcredits8 = record.GetDecimal(offset++);// float.Parse(reader["extcredits8"].ToString());
userinfo.Avatarshowid = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["avatarshowid"].ToString());
userinfo.Email = record.GetStringOrEmpty(offset++);// reader["email"].ToString();
userinfo.Bday = record.GetStringOrEmpty(offset++);// reader["bday"].ToString();
userinfo.Sigstatus = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["sigstatus"].ToString());
userinfo.Tpp = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["tpp"].ToString());
userinfo.Ppp = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["ppp"].ToString());
userinfo.Templateid = record.GetInt16OrDefault(offset++, 0); // Int16.Parse(reader["templateid"].ToString());
userinfo.Pmsound = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["pmsound"].ToString());
userinfo.Showemail = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["showemail"].ToString());
userinfo.Invisible = record.GetInt32OrDefault(offset++, 0); // Int32.Parse(reader["invisible"].ToString());
userinfo.Newpm = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["newpm"].ToString());
userinfo.Newpmcount = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["newpmcount"].ToString());
userinfo.Accessmasks = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["accessmasks"].ToString());
userinfo.Onlinestate = record.GetInt32OrDefault(offset++, 0); //Int32.Parse(reader["onlinestate"].ToString());
userinfo.Spaceid = record.GetInt32OrDefault(offset++, 0);// Int32.Parse(reader["spaceid"].ToString());
userinfo.Newsletter = record.GetInt32OrDefault(offset++, 0); //(ReceivePMSettingType)Int32.Parse(reader["newsletter"].ToString());
offset++;//fields.userid
userinfo.Website = record.GetStringOrEmpty(offset++);
userinfo.Icq = record.GetStringOrEmpty(offset++);
userinfo.Qq = record.GetStringOrEmpty(offset++);
userinfo.Yahoo = record.GetStringOrEmpty(offset++);
userinfo.Msn = record.GetStringOrEmpty(offset++);
userinfo.Skype = record.GetStringOrEmpty(offset++);
userinfo.Location = record.GetStringOrEmpty(offset++);
userinfo.Customstatus = record.GetStringOrEmpty(offset++);
userinfo.Avatar = record.GetStringOrEmpty(offset++);
userinfo.Avatarwidth = record.GetInt32OrDefault(offset++, 0);
userinfo.Avatarheight = record.GetInt32OrDefault(offset++, 0);
userinfo.Medals = record.GetStringOrEmpty(offset++);
userinfo.Authstr = record.GetStringOrEmpty(offset++);
userinfo.Authtime = record.GetDateTimeOrEmpty(offset++);
userinfo.Authflag = record.GetByteOrDefault(offset++,0);
userinfo.Bio = record.GetStringOrEmpty(offset++);
userinfo.Signature = record.GetStringOrEmpty(offset++);
userinfo.Sightml = record.GetStringOrEmpty(offset++);
userinfo.Realname = record.GetStringOrEmpty(offset++);
userinfo.Idcard = record.GetStringOrEmpty(offset++);
userinfo.Mobile = record.GetStringOrEmpty(offset++);
userinfo.Phone = record.GetStringOrEmpty(offset++);
}
示例2: Update
/// <summary>
/// Updates the specified record.
/// </summary>
/// <param name="record">The record.</param>
public void Update(IRecord record)
{
if (record.FieldCount != this.FieldCount)
throw new InvalidOperationException(Strings.ErrorJaggedResultSet);
foreach (var v in _values.Values)
{
v.SetNull();
}
for (int i = 0; i < record.FieldCount; i++)
{
if (record.IsNull(i))
continue;
var val = _values[_ordinalMap[i]];
var type = val.Type;
switch (type)
{
case PropertyValueType.Blob:
((BlobValue)val).Value = record.GetBlob(i);
break;
case PropertyValueType.Boolean:
((BooleanValue)val).Value = record.GetBoolean(i);
break;
case PropertyValueType.Byte:
((ByteValue)val).Value = record.GetByte(i);
break;
case PropertyValueType.Clob:
((ClobValue)val).Value = record.GetClob(i);
break;
case PropertyValueType.DateTime:
((DateTimeValue)val).Value = record.GetDateTime(i);
break;
case PropertyValueType.Double:
((DoubleValue)val).Value = record.GetDouble(i);
break;
//case PropertyValueType.Feature:
// {
// List<IFeature> features = new List<IFeature>();
// foreach (var feat in record.GetFeatureObject(i))
// {
// features.Add(feat);
// }
// ((FeatureValue)val).Value = features.ToArray();
// }
// break;
case PropertyValueType.Geometry:
((GeometryValue)val).Value = record.GetGeometry(i);
break;
case PropertyValueType.Int16:
((Int16Value)val).Value = record.GetInt16(i);
break;
case PropertyValueType.Int32:
((Int32Value)val).Value = record.GetInt32(i);
break;
case PropertyValueType.Int64:
((Int64Value)val).Value = record.GetInt64(i);
break;
//case PropertyValueType.Raster:
// ((RasterValue)val).Value = record.GetRaster(i);
// break;
case PropertyValueType.Single:
((SingleValue)val).Value = record.GetSingle(i);
break;
case PropertyValueType.String:
((StringValue)val).Value = record.GetString(i);
break;
}
}
}