<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/fengyun14" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/fengyun14" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 14 Oct 2009 16:29:00 GMT</lastBuildDate><title>阿龙的专栏</title><description>XinXiang Police</description><link>http://blog.csdn.net/blogrss.aspx?username=fengyun14</link><item><title>LINQ的执行时间</title><link>http://blog.csdn.net/fengyun14/archive/2009/10/15/4673134.aspx</link><description>LINQ的查询执行遵循以下原则：1、一般情况下（除了下面第三条说的情况），LINQ都是延迟执行，原因：以DLINQ为例，越晚被执行，对业务逻辑的理解就越清晰，DLINQ查询对数据库的请求压力越小。编译器对LINQ查询优化可作的事情越多。2、由于是延迟执行，也就是调用的时候才去执行。这样调用一次就被执行一次，这样就具备了重复执行的功能，参看之前的几个重复执行的例子。而这个重复执行是不需要再此书写一边查询语句的。3、如果查询中我们对查询结果使用了 ToArray、ToList、ToDictionary 这些转换成集合的扩展方法。使用这时候出来的对象是一个独立的集合数组，而不是LINQ查询，所以这时候不会出现多次查询，而只是一次查询。延迟执行对于多数的查询操作符来说, 他们并不是在构造后被立即执行, 而是当枚举发生的时候, 换句话说就是当它对应的枚举器上的MoveNext被调用的时候. 例如下面的查询:   1: var numbers = new List( );   2: numb&lt;img src=&quot;http://www1.feedsky.com/t1/282731198/fengyun14/csdn.net/s.gif?r=http://blog.csdn.net/fengyun14/archive/2009/10/15/4673134.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731198/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731198/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 15 Oct 2009 00:29:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/10/15/4673134.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/10/15/4673134.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731198/1127884</fs:itemid></item><item><title>talend结合XML写的一个自动提取并更改为最新时间的一个类</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx</link><description>&lt;br /&gt;import java.io.FileOutputStream;
import java.io.IOException;
import java.io.FileNotFoundException;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import jav&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731209/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731209/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 15 Apr 2009 10:13:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/04/15/4074927.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731209/1127884</fs:itemid></item><item><title>常用的数据库统计SQL语句</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx</link><description>&lt;br /&gt;1.解决被零除(零做除数时)&lt;br /&gt;&lt;br /&gt;--来自百度问吧&lt;br /&gt;&lt;br /&gt;在统计系统中,需要求百分数, &lt;br /&gt;如(sum(baseprice)-sum(quote))/sum(baseprice)*100)中, &lt;br /&gt;如果sum(baseprice)为0,系统会报错,不能运行&lt;br /&gt;&lt;br /&gt;把sum(baseprice) 改为 &lt;br /&gt;nullif(sum(isnull(baseprice,0)),0) &lt;br /&gt;就可以了，除于0会出错，除于null就不会出错了&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.列出某年1-12月数据各产吕的销售数据&lt;br /&gt;&lt;br /&gt;Select 产品ID AS 机型, SUM(CASE month(日期) WHEN 1 THEN 销售量 ELSE 0 END) &lt;br /&gt;      AS [一月], SUM(CASE month(日期) WHEN 2 THEN 销售量 ELSE 0 END) AS [二月], &lt;br /&gt;      SUM(CASE&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731211/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731211/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 07 Apr 2009 10:49:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053602.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731211/1127884</fs:itemid></item><item><title>12条有用的Flex代码</title><link>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx</link><description>&lt;br /&gt;1.复制内容到系统剪贴板 &lt;br /&gt;System.setClipboard(strContent); &lt;br /&gt;&lt;br /&gt;2.复制一个ArrayCollection &lt;br /&gt;   //dummy solution( well, it works ) &lt;br /&gt;   var bar:ArrayCollection = new ArrayCollection(); &lt;br /&gt;   for each ( var i:Object in ac ){ &lt;br /&gt;       bar.addItem( i ); &lt;br /&gt;   } &lt;br /&gt;   // fantastic ! // &lt;br /&gt;   var bar:ListCollectionView = new ListCollectionView( ListCollectionView( ac ).list ); &lt;br /&gt;&lt;br /&gt;3.打开一个新浏览器窗口 &lt;br /&gt;navigateToURL(new URLRequest('http://ntt.cc'), '_blank'); &lt;br /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731212/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731212/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 07 Apr 2009 10:41:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/04/07/4053569.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731212/1127884</fs:itemid></item><item><title>FLEX中的Fluorine网关与WebService的区别</title><link>http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx</link><description>以前以为webservice只能使用一个方法，后来发现这是错误的，在FLEX中，使用WEBSERVICE其实更方便。&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731213/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731213/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Mar 2009 12:25:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/03/13/3987085.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731213/1127884</fs:itemid></item><item><title>Talend中变量载入(tContextLoad)的用法，及其他注意事项</title><link>http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx</link><description>此文为本人私下参考用，不拘泥于表达一、要用tContextLoad，就要：1、放一个tOracleInput，其中此表要有2个字段，第一字段是key（即描述），第二个字段是value。2、放一个tContextLoad。注意，之前要在Contexts栏目添加tOracleInput中key里的变量。二、日期的问题由于Talend是由JAVA做的，日期被转为String后，就形如： 200-3-12 11:11:11.0 了。所以下一步如果自定义select的where的话，就要用substring截取，如：where riqi &gt; to_date('&quot; + context.mykey.substring(0,context.mykey.length()-2) + &quot;','yyyy-MM-DD HH24:MI:SS')&quot;三、自定义schema内容软件在用到关键的控件：tMap时，一般会抽取tOracleInput 中schema的全部字段，如&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731214/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731214/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Mar 2009 11:05:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2009/03/13/3986788.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731214/1127884</fs:itemid></item><item><title>FLEX中给组件添加自定义事件</title><link>http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx</link><description>FLEX 系统提供的事件与DOM的事件基本上完全一致 但是和传统的WEB开发不同的是  可以为自定义的组件添加自定义的事件    比如我们做了一个组件是一个登录框   当点击登录按钮的时候触发我们自定义的事件 比如叫&quot;login&quot;事件  虽然这个login事件 归根结底还是某个按钮的click事件 但自定义的事件比传统的事件有什么好处呢 ：一是事件的名字是自定义的 可以形象的表示这个事件本身 而不像以前还要关心是哪个按钮按了一下等等  这样为组件与组件的通讯提供便利   下面的例子中自定义了一个组件叫testComponent , 这个自定义的组件中有一个按钮和一个输入框, 当按下这个按钮的时候   新建一个新的事件叫shareData 并且shareData事件被声明为一个textEvent ，  textEvent可以通过text属性来传递数据（textInput控件的值） 。EventTest.mxml中引用了这个自定义组件testComponent 并捕获testComponent中的自定义事件shareData, 输出testComponent 中textIn&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731215/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731215/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 08 Dec 2008 19:40:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2008/12/08/3478340.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731215/1127884</fs:itemid></item><item><title>Flex Application 初始化顺序</title><link>http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx</link><description>preloader-&gt;systemManager-&gt;FlexApplication started...&lt;br /&gt;然后才是&lt;br /&gt;&lt;br /&gt;preinitialize&lt;br /&gt;在所有的初始化之前触发,没有子组件的定义,但是可以引用组件的变量.&lt;br /&gt;&lt;br /&gt;initialize&lt;br /&gt;当所有子组件生成完成后触发,在这个时间点还没有组件被渲染出来.&lt;br /&gt;&lt;br /&gt;creationComplete&lt;br /&gt;组件定义完成并已经在显示列表.&lt;br /&gt;&lt;br /&gt;applicationComplete&lt;br /&gt;所有的组件初始化完成并显示.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;首 先介绍一下SystemManager. SystemManager是Flex应用的主控者, 它控制着应用窗口, Application实例, 弹出窗口, cursors, 并管理着ApplicationDomain中的类. SystemManager是FlashPlayer实例化的第一个类, 它存储了主应用窗口的大小和位置信息, 保存其子组件比如:浮动弹出窗口和模态窗口的痕迹. 通过Sy&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731216/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731216/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 02 Nov 2008 10:07:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2008/11/02/3206270.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731216/1127884</fs:itemid></item><item><title>flex 各组件对应的样式属性</title><link>http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx</link><description>flex 各组件对应的样式属性&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731220/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731220/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 30 Oct 2008 08:18:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2008/10/30/3181251.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731220/1127884</fs:itemid></item><item><title>将普通表转变为分区表、索引分区，及与无分区前的查询效率比较</title><link>http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx</link><description>ORACLE表分区、局部前缀索引分区、局部非前缀索引分区、全局索引&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/fengyun14/282731230/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/fengyun14/282731230/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 12 Feb 2008 17:06:00 +0800</pubDate><author>阿龙</author><guid isPermaLink="false">http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx</guid><dc:creator>阿龙</dc:creator><fs:srclink>http://blog.csdn.net/fengyun14/archive/2008/02/12/2088905.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/fengyun14/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/fengyun14/~1127890/282731230/1127884</fs:itemid></item></channel></rss>