上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 37 下一页
摘要: 在Oracle中执行动态SQL的几种方法 在一般的sql操作中,sql语句基本上都是固定的,如:SELECT t.empno,t.ename FROM scott.emp t WHERE t.deptno = 20;但有的时候,从应用的需要或程序的编写出发,都可能需要用到动态SQl,如:当 from 阅读全文
posted @ 2018-05-11 07:15 流失的痕迹 阅读(336) 评论(0) 推荐(0)
摘要: create index idx_th_user_info_fans_name on th_user_info(fans_name) nologging; 阅读全文
posted @ 2018-05-06 21:36 流失的痕迹 阅读(1502) 评论(0) 推荐(0)
摘要: fmt.Println(reflect.TypeOf(var)) switch xxx.(type){ case int:.... case float32:... case float64:... case string:... } 对type的枚举,不能使用fallthrough,且float3 阅读全文
posted @ 2018-05-03 13:57 流失的痕迹 阅读(346) 评论(0) 推荐(0)
摘要: 获取当前时间 func Now 1 Now returns the current local time. func (Time) UTC 1 UTC returns t with the location set to UTC. func (Time) Unix 1 Unix returns t 阅读全文
posted @ 2018-05-03 08:58 流失的痕迹 阅读(10921) 评论(0) 推荐(0)
摘要: 1、从lua脚本传回到go那边的数字是string类型 2、hincrby 返回当前值的计算结果(即存放到redis中的值) 3、hset 一个不存在的key,返回什么呢?即设置失败返回什么错误?(会创建出这个key来,并返回1,如果这个已key存在,则返回0[设值仍然会成功] 4、hget 一个空 阅读全文
posted @ 2018-03-19 11:26 流失的痕迹 阅读(3516) 评论(0) 推荐(1)
摘要: 有时候IIS会遇到这种问题: HTTP 错误 404.2 - Not Found 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面。 这有可能是先装的.NET后装的IIS导致的,执行下面这个命令: >cmd: C:\Windows\Microsoft.NET\F 阅读全文
posted @ 2017-12-01 18:08 流失的痕迹 阅读(1719) 评论(0) 推荐(0)
摘要: -- 找回一个小时前的数据 select * from sys_system_dictionary as of timestamp sysdate - 1/24order by id AS OF TIMESTAMP方式的使用非常方便,但是在某些情况下,我们建议使用AS OF SCN的方式执行Flas 阅读全文
posted @ 2017-11-29 16:58 流失的痕迹 阅读(185) 评论(0) 推荐(0)
摘要: ng serve --sourcemap --extractCss 阅读全文
posted @ 2017-10-30 07:41 流失的痕迹 阅读(336) 评论(0) 推荐(0)
摘要: 撤销本地所有修改(未commit之前):git checkout . http pull方式设置记住密码,这样就不用每次都让输用户名和密码了(默认15分钟): git config --global credential.helper cache 如果想自己设置时间,可以这样做: git confi 阅读全文
posted @ 2017-10-23 15:46 流失的痕迹 阅读(147) 评论(0) 推荐(0)
摘要: 估计就是这个原因了 解决方案: 1、使用 ng build --prod --no-extract-license 可以正常编译 2、删除node_modules,重新使用npm install来安装(即使FQ也较慢) 安装cnpm: 阅读全文
posted @ 2017-10-10 17:06 流失的痕迹 阅读(402) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 37 下一页