摘要:
--oracle添加主键自增长步骤 --第一步 CREATE SEQUENCE seq_表名称 INCREMENT BY 1 -- 每次加几个 START WITH 1 -- 从1开始计数 NOMAXVALUE -- 不设置最大值 NOCYCLE -- 一直累加,不循环 NOCACHE -- 不建缓冲区 --第二步 CREATE TRIGGER "tiger_表名称" BEFOR... 阅读全文
posted @ 2018-04-09 13:48
ChobitsSP
阅读(249)
评论(0)
推荐(0)
摘要:
http://stackoverflow.com/questions/4611549/recursion-with-func http://stackoverflow.com/questions/1208703/can-an-anonymous-method-in-c-sharp-call-itse 阅读全文
posted @ 2018-04-09 13:46
ChobitsSP
阅读(148)
评论(0)
推荐(0)
摘要:
public T CreateDefault() { T item = new T(); foreach (var p in typeof(T).GetProperties()) { Type colType = p.PropertyType; if (colType == typeof(Nullable)) { ... 阅读全文
posted @ 2018-04-09 13:45
ChobitsSP
阅读(208)
评论(0)
推荐(0)
摘要:
http://msdn.microsoft.com/zh-cn/library/system.environment.currentmanagedthreadid.aspx http://stackoverflow.com/questions/15569664/system-missingmetho 阅读全文
posted @ 2018-04-09 13:44
ChobitsSP
阅读(461)
评论(0)
推荐(0)
摘要:
'use strict'; function InitRedisStrategy(agent, name, channel) { class RedisStrategy extends agent.ScheduleStrategy { start() { // 订阅其他的分布式调度服务发送的消息,收到消息后让一个进程执行定时任务 agent.redis.on... 阅读全文
posted @ 2018-04-09 13:39
ChobitsSP
阅读(629)
评论(0)
推荐(0)
浙公网安备 33010602011771号