• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
gooliugle
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 5 6 ··· 9 下一页
2011年8月24日
Window 2008 R2 开端口
摘要: Inbound Rules.New Rule 阅读全文
posted @ 2011-08-24 10:14 gooliugle 阅读(714) 评论(0) 推荐(0)
2011年8月18日
Oracle 从已知表同步数据
摘要: merge into sm_classes sc using (select * from ceibs_uv_embaclass) c on(sc.id = c.id) when matched then update set sc.classname=c.classname,sc.groupname=c.group_namewhen not matched then insert (sc.id,sc.classname,sc.groupname)values (c.id,c.classname,c.group_name) 阅读全文
posted @ 2011-08-18 09:46 gooliugle 阅读(396) 评论(1) 推荐(0)
2011年7月27日
Oracle create table
摘要: create table SM_COURSR_STUDENT as select * from table 阅读全文
posted @ 2011-07-27 13:11 gooliugle 阅读(543) 评论(0) 推荐(0)
2011年6月29日
Oracle SEQUENCE
摘要: 1.创建SEQUENCE(自增长列 与表无关)CREATE SEQUENCE "CEIADM_TASKS_SEQ" MINVALUE 1 MAXVALUE 99999999 INCREMENT BY 1 START WITH 1 NOCACHE 2.创建触发器,关联表CREATE OR REPLACE TRIGGER "INSERT_CEIADM_TASKS" BEFOREinsert on "CEIADM_TASKS"for each rowbeginselect "CEIADM_TASKS_SEQ".nextv 阅读全文
posted @ 2011-06-29 10:24 gooliugle 阅读(255) 评论(0) 推荐(0)
2011年5月5日
HttpHandler和HttpModule 区别(转载)
摘要: ASP.Net处理Http Request时,使用Pipeline(管道)方式,由各个HttpModule对请求进行处理,然后到达 HttpHandler,HttpHandler处理完之后,仍经过Pipeline中各个HttpModule的处理,最后将HTML发送到客户端浏览 器中。 生命周期中涉及到几个非常重要的对象:HttpHandler,HttpModule,IHttpHandlerFactory,他们的执行(顺序)大致 的执行过程是这样的:client端发送页面请求,被IIS的某个进程截获,它根据申请的页 面后缀(.aspx)不同,调用不同的页面处理程序(.asp->asp.dl 阅读全文
posted @ 2011-05-05 09:39 gooliugle 阅读(876) 评论(0) 推荐(0)
2011年4月25日
java 调用.net web service
摘要: 代码:importjavax.xml.namespace.QName;importorg.apache.axis.client.Call;importorg.apache.axis.client.Service;publicclassIPreventIndulge{publicbooleangetValidateInfo(StringUUid){try{Stringendpoint="http://game.qidian.com/RemoteWebService/IPreventIndulge.asmx";//创建一个服务(service)调用(call)Servicese 阅读全文
posted @ 2011-04-25 17:53 gooliugle 阅读(519) 评论(0) 推荐(0)
2011年3月15日
插入更新表内容的存储过程
摘要: SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGO--=============================================--Author:<liuwei>--Createdate:<2011-03-15>--Description:<道具系统日报表统计>--=============================================ALTERPROCEDURE[dbo].[sp_PropsReport_DaySync]ASBEGIN--循环读取TbApps里的数据--声明游标DECLARE 阅读全文
posted @ 2011-03-15 13:39 gooliugle 阅读(504) 评论(1) 推荐(0)
2011年3月14日
为已知表增加一列
摘要: ALTER TABLE TbPropsOrderDayReport ADD PersonCount int NOT NULL DEFAULT 0 阅读全文
posted @ 2011-03-14 15:44 gooliugle 阅读(178) 评论(0) 推荐(0)
2011年3月12日
repeater内嵌套下拉列表绑定数据.
摘要: protectedvoidrptActiveCodesOfGame_ItemDataBound(objectsender,RepeaterItemEventArgse){DropDownListddl=e.Item.FindControl("ddlSelectServer")asDropDownList;if(ddl!=null){List<GameActiveCodeInfo>tempList=newList<GameActiveCodeInfo>();GameActiveCodeInfog=e.Item.DataItemasGameActiveC 阅读全文
posted @ 2011-03-12 14:11 gooliugle 阅读(1059) 评论(0) 推荐(0)
Javascript 写法
摘要: <scripttype="text/javascript">varGameActiveCode={pbatchId:0,GetActiveCodeDetail:function(controlId,spanNameShort){varddlBatchId=document.getElementById(controlId).valuevarcallBack=function(resultContent){if(resultContent!=null){varspanId="lbPrizeContent"+spanNameShort;docum 阅读全文
posted @ 2011-03-12 14:08 gooliugle 阅读(783) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 9 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3