|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
EXAMPLE存储引擎是一个不做任何事情的存根引擎。它的目的是作为MySQL源代码中的一个例子,用来演示如何开始编写一个新存储引擎。同样,它的主要兴趣是对开发者。EXAMPLE存储引擎不支持编索引。publicintAppend(messageInfoinfo)
{
intnewid=0;
stringSql="INSERTINTO[message]([mes_type],[mes_title],[mes_name],[mes_type1],[mes_type2],[mes_type3],[mes_pingbai],[mes_xinghao],[mes_fanwei],[mes_tixi],[mes_suxin],[mes_content],[mes_pic],[mes_time],[mes_danwei],[mes_danjia],[mes_liang],[mes_total],[mes_time2],[user_id],[mes_data],[state],[refusal])VALUES(@type,@title,@name,@type1,@type2,@type3,@pingbai,@xinghao,@fanwei,@tixi,@suxin,@content,@pic,@time,@danwei,@danjia,@liang,@total,@time2,@id,@data,@state,@refusal);SELECT@@IDENTITY;";
ServiceParameter[]parameters=newServiceParameter[]{
newServiceParameter("@type",info.type),
newServiceParameter("@title",info.title),
newServiceParameter("@name",info.name),
newServiceParameter("@type1",info.type1),
newServiceParameter("@type2",info.type2),
newServiceParameter("@type3",info.type3),
newServiceParameter("@pingbai",info.pingbai),
newServiceParameter("@xinghao",info.xinghao),
newServiceParameter("@fanwei",info.fanwei),
newServiceParameter("@tixi",info.tixi),
newServiceParameter("@suxin",info.suxin),
newServiceParameter("@content",info.content),
newServiceParameter("@pic",info.pic),
newServiceParameter("@time",info.time),
newServiceParameter("@danwei",info.danwei),
newServiceParameter("@danjia",info.danjia),
newServiceParameter("@liang",info.liang),
newServiceParameter("@total",info.total),
newServiceParameter("@time2",info.time2),
newServiceParameter("@id",info.id),
newServiceParameter("@data",info.data),
newServiceParameter("@state",info.state),
newServiceParameter("@refusal",info.refusal)
};
using(IDataReaderdr=ServiceProvider.GetProvider().GetReader(Sql,CommandType.Text,parameters))
{
if(dr.Read())int.TryParse(dr.GetDecimal(0).ToString(),outnewid);
dr.Close();
}
returnnewid;
}
@@identity是暗示的是比来一次向具有identity属性(即自增列)的表拔出数据时对应的自增列的值,是体系界说的全局变量。一样平常体系界说的全局变量都是以@@开首,用户自界说变量以@开首。好比有个表A,它的自增列是id,当向A表拔出一行数据后,假如拔出数据后自增列的值主动增添至101,则经由过程select@@identity失掉的值就是101。利用@@identity的条件是在举行insert操纵后,实行select@@identity的时分毗连没有封闭,不然失掉的将是NULL值。
支持大型的数据库。可以处理拥有上千万条记录的大型数据库。 |
|