摘要: 来自:http://www.tuicool.com/articles/fIfm22#770 – The Difference Between a LayoutTransform and aRenderTransformMarch 6, 2013Leave a commentWhen you aret... 阅读全文
posted @ 2016-01-12 09:21 醉意人间 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 来自:http://blog.csdn.net/dingqinghu/article/details/46758671 阅读全文
posted @ 2015-12-18 11:27 醉意人间 阅读(756) 评论(0) 推荐(0) 编辑
摘要: 使用linq2db sqlite 的时候,找不到增加,删除的操作,原来是要引入一个新的命名空间LinqTODB。1 using LinqToDB; 插入:1 User uNew = new User();2 uNew.Name = "test";3... 阅读全文
posted @ 2015-12-13 20:31 醉意人间 阅读(803) 评论(0) 推荐(0) 编辑
摘要: http://segmentfault.com/a/1190000000684654http://www.infoq.com/cn/news/2011/09/js-promise/ 阅读全文
posted @ 2015-09-07 08:15 醉意人间 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 今天在处理SQL的时候遇到几个问题:1、如果指定了 SELECT DISTINCT,那么 ORDER BY 子句中的项就必须出现在选择列表中select distinct id from 收费站 order by name // 错误改成:select distinct id, name from... 阅读全文
posted @ 2015-05-18 18:06 醉意人间 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 来自:http://blog.jobbole.com/55086/很多程序员视 SQL 为洪水猛兽。SQL 是一种为数不多的声明性语言,它的运行方式完全不同于我们所熟知的命令行语言、面向对象的程序语言、甚至是函数语言(尽管有些人认为 SQL 语言也是一种函数式语言)。我们每天都在写 SQL 并且应用... 阅读全文
posted @ 2015-05-16 20:19 醉意人间 阅读(211) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/gaizai/p/3753296.htmlhttp://www.cnblogs.com/maanshancss/archive/2013/03/13/2957108.html 阅读全文
posted @ 2015-05-16 16:24 醉意人间 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 来自:http://blog.sina.com.cn/s/blog_8a0c4f130100zaw2.html先谈谈in和exists的区别:exists:存在,后面一般都是子查询,当子查询返回行数时,exists返回true。select * from class where exists (se... 阅读全文
posted @ 2015-05-08 14:07 醉意人间 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 来自:http://www.cnblogs.com/pcjim/articles/799302.htmlleft join(左联接) 返回包括左表中的所有记录和右表中联结字段相等的记录right join(右联接) 返回包括右表中的所有记录和左表中联结字段相等的记录inner join(等值连接) ... 阅读全文
posted @ 2015-05-08 08:56 醉意人间 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 来自:http://www.cnblogs.com/lekko/archive/2013/03/05/2944282.html 本人是从.NET4.0刚出的时候接触的.NET环境,所以学的东西就是4.0及其之前的。时代飞速前进,目测5.0也快出了吧,但一直也没去接受新的技术。最近由于要学习Web... 阅读全文
posted @ 2015-03-07 10:43 醉意人间 阅读(390) 评论(0) 推荐(0) 编辑