08 2016 档案
摘要:WITH CTE AS ( -- 一个定位点成员 SELECT a.* FROM tree a WHERE pid = 0 UNION ALL -- 递归成员 SELECT a.* FROM tree a JOIN CTE c ON a.pid = c.id ) SELECT * from CTE --1.将 CTE 表达式拆分为定位点成员和递归成员。 -...
阅读全文
摘要:-?,-h : this help -v : show version and exit -V : show version and configure options then exit -t : test configuration and exit -q : suppress ...
阅读全文
摘要:由于非常感兴趣, 我查询了很多关于IIFE (immediately-invoked function expression)的东西, 如下:(function (window, document, undefined) {// })(window, document);那么为什么不写一篇关于它的文章呢? ;-)首先,它有一系列不同的东西。从头开始:作用域JavaScript有function 作...
阅读全文
摘要:1. Dao 使用接口设计2. Dao 没有实现代码, 使用模板实现(通过DynamicProxy+Dapper)3. 模板格式暂定使用Ader Template来自为知笔记(Wiz)
阅读全文