<?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/qshpeng" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/qshpeng" type="application/rss+xml"></fs:self_link><lastBuildDate>Sat, 30 Jan 2010 02:54:00 GMT</lastBuildDate><title>qshpeng的专栏</title><description>CSDN博客聚合服务</description><link>http://blog.csdn.net/blogrss.aspx?username=qshpeng</link><item><title>C语言进行身份证号码校验</title><link>http://blog.csdn.net/qshpeng/archive/2010/01/30/5271979.aspx</link><description>使用C语言进行身份证号码校验&lt;img src=&quot;http://www1.feedsky.com/t1/327502152/qshpeng/csdn.net/s.gif?r=http://blog.csdn.net/qshpeng/archive/2010/01/30/5271979.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/qshpeng/327502152/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/qshpeng/327502152/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 30 Jan 2010 10:54:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2010/01/30/5271979.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2010/01/30/5271979.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502152/1116917</fs:itemid></item><item><title>PRO *C/C++ 动态SQL</title><link>http://blog.csdn.net/qshpeng/archive/2009/07/06/4325440.aspx</link><description>(1)动态SQL1: 不能是查询(SELECT)语句,并且没有宿主变量.  用法:拼一句动态SQL语句,并用EXECUTE IMMEDIATE执行,如: EXEC SQL EXECUTE IMMEDIATE CREATE TABLE test (test_col VARCHAR2(4)); EXEC SQL EXECUTE IMMEDIATE INSERT INTO TABLE test ('AAAA');EXEC SQL EXECUTE IMMEDIATE DELETE test WHERE test_col='AAAA'; (2)动态SQL2: 不能是查询(SELECT)语句,并且输入的宿主变量数目是知道的, 用法1:拼一句动态SQL语句,用PREPARE ,EXECUTE语句执行. strcpy(sqlstring, &quot;DELETE FROM test WHERE test_col = :?&quot;);  EXEC SQL PREPARE sqlpro&lt;img src=&quot;http://www1.feedsky.com/t1/327502153/qshpeng/csdn.net/s.gif?r=http://blog.csdn.net/qshpeng/archive/2009/07/06/4325440.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/qshpeng/327502153/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/qshpeng/327502153/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 06 Jul 2009 15:34:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2009/07/06/4325440.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2009/07/06/4325440.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502153/1116917</fs:itemid></item><item><title>最近遇到的oracle一些问题</title><link>http://blog.csdn.net/qshpeng/archive/2009/04/23/4103919.aspx</link><description>我在看oracle性能优化一书用exists替代in,用表链接替代exists，关于前者，一般效果比较明显，exists效率明显比in高，但是如果要想表连接的效率比exists高，必须在from子句中，将记录多的表放在前面，记录少的表放后面。关于select... bulk collect into ... limit ...或fetch... bulk collect into ... limit ...句型后，用for或forall循环进行操作报错ORA-06502: PL/SQL: numeric or value error的原因是遇到了空值。在句型fetch...bulk collect into...limint...中，千万要注意，不要随便使用游标的%found, %notfound, %rowcount三个属性&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502154/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/qshpeng/327502154/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 23 Apr 2009 17:18:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2009/04/23/4103919.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2009/04/23/4103919.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502154/1116917</fs:itemid></item><item><title>c 语言fopen打不开中文名的文件</title><link>http://blog.csdn.net/qshpeng/archive/2009/02/11/3876447.aspx</link><description>最近在用Ｃ语言对文件进行md5加密的时候，发现凡是有中文名的文件，一律获取md5码失败，不管是在dos下运行，还是在linux,unix下运行都不行。英文名的文件都成功。原因找了很久一直找不到。后来发现在dos 下，和linux,unix下，中文名显示的都是乱码，且程序输出错误errno为2,即找不到文件的错误。因此，可以断定，程序中指定的文件名与系统文件名是不一样的，程序无法找到文件，才会出现如此的错误。如果在linux,unix下，只需更改程序中的文件名与系统显示的文件名一致，或者重命名文件。但编辑时必须处于同一系统下。&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502155/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/qshpeng/327502155/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 11 Feb 2009 10:59:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2009/02/11/3876447.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2009/02/11/3876447.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502155/1116917</fs:itemid></item><item><title>asp.net  datagrid和gridview中实现分页</title><link>http://blog.csdn.net/qshpeng/archive/2008/12/15/3523788.aspx</link><description>在GridView加入一序号列 这里提供几个简单好用的方法原理：给数据源添加一个序列代码如下：//获得数据源    mySelectCommand = &quot;select * from table&quot; ;   SqlDataAdapter myCommand = new SqlDataAdapter(mySelectCommand,myConnection);   DataTable dt = new DataTable();   myCommand.Fill(dt);    //将数据库获得的结果集付给dt，以进一步操作 //给dt加序列    dt.Columns.Add(&quot;index&quot;,typeof(int));//加序列    int index;   for( index = 0; index &lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502156/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/qshpeng/327502156/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 15 Dec 2008 20:04:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2008/12/15/3523788.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2008/12/15/3523788.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502156/1116917</fs:itemid></item><item><title>jsp实现多文件上传</title><link>http://blog.csdn.net/qshpeng/archive/2008/11/23/3356729.aspx</link><description>jsp实现多文件上传，并解决jsp的request.getParameter获取不到表单参数问题&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502157/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/qshpeng/327502157/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 23 Nov 2008 18:11:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2008/11/23/3356729.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2008/11/23/3356729.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502157/1116917</fs:itemid></item><item><title>一个较能通用的C#画曲线类</title><link>http://blog.csdn.net/qshpeng/archive/2008/01/17/2047734.aspx</link><description>本文提供一个较为通用的C#画曲线的类。&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502158/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/qshpeng/327502158/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 17 Jan 2008 00:17:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2008/01/17/2047734.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2008/01/17/2047734.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502158/1116917</fs:itemid></item><item><title>甘肃省委书记的超牛论文英文标题</title><link>http://blog.csdn.net/qshpeng/archive/2007/12/07/1922060.aspx</link><description>甘肃省委书记的超牛论文英文标题。开拓进取真抓实干不断开创西部大开发的新局面 --&amp;gt;Expand Enterprising and Really Grasp Solid Fuck and Continuously Expand and Great the New Situation of Buildings of Western Region&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502159/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/qshpeng/327502159/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 07 Dec 2007 10:52:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2007/12/07/1922060.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2007/12/07/1922060.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502159/1116917</fs:itemid></item><item><title>一种字符串表达式求值的简单方法</title><link>http://blog.csdn.net/qshpeng/archive/2007/11/10/1877000.aspx</link><description>一种字符串表达式求值的简单方法：利用后缀表达式求值
提供一个C#中通用的表达式求值的类&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502160/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/qshpeng/327502160/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 10 Nov 2007 00:15:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2007/11/10/1877000.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2007/11/10/1877000.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502160/1116917</fs:itemid></item><item><title>笔试智力题</title><link>http://blog.csdn.net/qshpeng/archive/2007/10/27/1847468.aspx</link><description>笔试智力题&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/qshpeng/327502161/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/qshpeng/327502161/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 27 Oct 2007 11:42:00 +0800</pubDate><author>qshpeng</author><guid isPermaLink="false">http://blog.csdn.net/qshpeng/archive/2007/10/27/1847468.aspx</guid><dc:creator>qshpeng</dc:creator><fs:srclink>http://blog.csdn.net/qshpeng/archive/2007/10/27/1847468.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/qshpeng/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/qshpeng/~1116921/327502161/1116917</fs:itemid></item></channel></rss>