<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_季浩的Blog</title><subtitle type="text">公告：工作忙，BLOG的维护时间少，见谅！</subtitle><id>http://feed.cnblogs.com/blog/u/12489/rss</id><updated>2011-10-18T09:59:33Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/12489/rss"/><entry><id>http://www.cnblogs.com/jht/archive/2008/04/06/1139292.html</id><title type="text">Data type mismatch in criteria expression. 条件表达式中数据类型不匹配 </title><summary type="text">其实是个简单的小问题，仅在此做个记录。遇到类似问题的不妨读一下这篇文章先：Access查询和过滤条件 http://www.fontstuff.com/access/acctut06.htm我遇到的报错语句如下：updatemonitor_tablesetlogoffTime='2008-04-0616:58:54',keyClickCount='17'whereuserName='abcd'an...</summary><published>2008-04-06T09:19:00Z</published><updated>2008-04-06T09:19:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2008/04/06/1139292.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2008/04/06/1139292.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2008/03/27/1125561.html</id><title type="text">PInvoke 知识记录</title><summary type="text">Platform invoke is a service that enables managed code to call unmanaged functions implemented in dynamic link libraries (DLLs), such as those in the Win32 API. 有个好用的VS插件，来自基于wiki的http://pinvoke.net/ ...</summary><published>2008-03-27T08:25:00Z</published><updated>2008-03-27T08:25:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2008/03/27/1125561.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2008/03/27/1125561.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2007/03/31/694619.html</id><title type="text">近两年的BLOG博龄</title><summary type="text">我的BLOG竟然有近两年历史了时间过得很快呀博客给了自己不少寄托学习技术的时候也有点动力技术是用来分享的学习的同时把自己的经验与大家分享是件很快乐的事情工作比较忙来这更新时间就少了加上自己还有javaBlog和C++Blog发帖相对就分散了项目忙了很长一段时间之后发现自己还是惦记着BLOG这快地感觉好像没有了这个学习到的东西都比较空虚还是找个地方分享出来比较踏实所以不管有多忙，以后还是多多发点有技...</summary><published>2007-03-30T16:01:00Z</published><updated>2007-03-30T16:01:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2007/03/31/694619.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2007/03/31/694619.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/05/13/398967.html</id><title type="text">前天一道我不能回答好的面试题:内存泄露你怎么解决？希望大家不吝赐教</title><summary type="text">题目描述很简单：内存泄露了，现象是看到该程序的内存占用率不断增长，作为一个程序员你怎么解决这个问题？ 我答的不好，回来之后又好好的想了想，其实回答这个问题应该从不同的方面来考虑 首先分析内存泄露容易发生的情况，《OOP启示录》对这些情况都讲得挺详细的，在类的构造函数与析构函数中没有匹配地调用 new/delete！没有正确地清除嵌套的对象指针！在释放对象数组时，没有使用delete []；指向由指...</summary><published>2006-05-13T01:58:00Z</published><updated>2006-05-13T01:58:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/05/13/398967.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/05/13/398967.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/05/10/396781.html</id><title type="text">ACCESS模糊查询出现的变态问题，不知道该问题的希望注意，知道内幕的高手还望给小弟一个解释 Thanks</title><summary type="text">在SQL Server中模糊查询通常是这样的Select * from articleTable where authorName like '%jacky%' 但是在Access中用这条语句执行的时候竟然发现查不出结果，怎么可能呢？后来查了下资料，发现问题如下：要进行模糊查找，则必须使用通配符，ACCESS库的通配符和SQL SERVER的通配符不一样。ACCESS库的通配符为： * 与任何个数...</summary><published>2006-05-10T14:28:00Z</published><updated>2006-05-10T14:28:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/05/10/396781.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/05/10/396781.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/04/09/370655.html</id><title type="text">logahead - AJAX的BLOG</title><summary type="text">挺酷PHP的BLOG系统，类似于Wordpress的页面样式，有空研究研究，先贴个图</summary><published>2006-04-09T08:23:00Z</published><updated>2006-04-09T08:23:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/04/09/370655.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/04/09/370655.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/04/07/369710.html</id><title type="text">AJAX淋漓尽致的发挥（Google个性化主页  VS.   Windows Live.COM）站在互联网浪尖上窃喜</title><summary type="text">       Song 给我推荐了 http://del.icou.us 用了一下，很不错，看网页，保存内容非常方便，有点爱不释手的感觉！&#xD;&#xD;      为什么开头要说这个呢，文章的标题不是AJAX吗？没错，下面说的正是目前走在互联网风头浪尖上的AJAX技术，众所周知，AJAX是老坛子装新酒，它现在的流行是有很多因素的，商业的，技术的。。。&#xD;不想分析的很细，总之，AJAX火得不得了啊！&#xD;&#xD;      Google的个性化主页&#xD;      Windows Live 技术&#xD;&#xD; PS : live mail我还有18个邀请，想体验一下的留下您的Email，只有18个哦！&#xD; PS2：Gmail有99份邀请，可以慢慢发&#xD;&#xD;      </summary><published>2006-04-07T15:44:00Z</published><updated>2006-04-07T15:44:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/04/07/369710.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/04/07/369710.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/04/07/369472.html</id><title type="text">汉诺塔</title><summary type="text">#include&amp;lt;stdio.h&amp;gt;//移动步骤voidmove(charA,charB){printf("%c--&amp;gt;%c\n",A,B);}//hanno(n,a,b,c)的意思是将n个盘子从a移动到c的过程(借助b座)voidhanno(intn,charA,charB,charC){if(n==1)move(A,C);else{hanno(n-1,A,C,B);move(A,...</summary><published>2006-04-07T08:55:00Z</published><updated>2006-04-07T08:55:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/04/07/369472.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/04/07/369472.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/04/06/368762.html</id><title type="text">原来BT也要设置端口映射的，今天才发现</title><summary type="text">我的BT下载速度常常徘徊在20K左右，所以很郁闷！今天突发奇想，像电驴那样将BT的监听端口映射了一下没想到速度马上飚了上去基本上能达到网络所能承受的下载速度！！！爽！！！各位BT的兄弟姐妹们，如果没有设置BT端口映射的话，赶快映射一下吧！简单说一下怎么映射端口我们宿舍的网络情况是这样的D-link无线路由器+ADSL内网有5台机器，共享1M带宽假设我的BT下载监听端口为3456我要做的设置就是在路...</summary><published>2006-04-06T14:26:00Z</published><updated>2006-04-06T14:26:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/04/06/368762.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/04/06/368762.html"/></entry><entry><id>http://www.cnblogs.com/jht/archive/2006/04/04/366086.html</id><title type="text">dup,dup2函数</title><summary type="text">这两个函数的功能是输出的重定向      定义这两个函数的头文件是unistd.h，有兴趣的可以自己看看这个头文件包含的内容            要提的是这个头文件同时定义了下面三个常量STDERR_FILENO = 2 标准错误输出STDIN_FILENO  = 0 标准输入STDOUT_FILENO  = 1 标准输出      兄弟们学习网络编程用0，1，2这些参数的时候也得知道代表的意思...</summary><published>2006-04-03T16:18:00Z</published><updated>2006-04-03T16:18:00Z</updated><author><name>秋雨飘飞</name><uri>http://www.cnblogs.com/jht/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jht/archive/2006/04/04/366086.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jht/archive/2006/04/04/366086.html"/></entry></feed>
