﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>偶的小站RSS 代码文章</title>
    <link>http://www.gogosonny.net/gogosuibi/?cid=310</link>
    <item>
      <title>使用系统存储过程sp_rename重命名数据库对象</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/2229.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Thu, 13 Nov 2008 05:51:01 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[A. 重命名表<br/><br/>下例将表 customers 重命名为 custs。<br/><br/>EXEC sp_rename 'customers', 'custs'<br/><br/>B. 重命名列<br/><br/>下例将表 customers 中的列 contact title 重命名为 title。<br/><br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>Oracle PLSQL</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/2070.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Fri, 11 Jul 2008 02:58:25 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[Oracle与MSSQL过程之间的转化<br/>http://www.cnblogs.com/xiaoyz/archive/2006/07/28/462344.html<br/><br/>pl/sql 中关于exception的学习笔记<br/>http://www.cnblogs.com/cuihongyu3503319/archive/2007/11/19/964681.html<br/><br/>详细讲述PLSQL的书写及语法<br/>http:<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>SQL Server中的命名规范</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/2059.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Mon, 26 May 2008 06:06:00 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[<br/>表名前缀t<br/><br/>字段名前缀f<br/><br/>视图名前缀v<br/><br/>变量命名用Camel命名规范<br/><br/>存储过程USP_<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>利用预生成事件来拷贝log4net的配置文件</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/2055.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Tue, 20 May 2008 01:04:50 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[由于log4net 1.2.9可以支持独立的配置文件，这样对于web来说很方便，但是winform倒不是很好的，因为需要运行时拷贝log4net.config到 bin/debug bin/release中，由于框架是我设计的，不希望使用的人很麻烦，所以翻来覆去，终于找到一个方法 利用项目的属性-通用属性-预生成事件命令行<br/>在那里输入copy $(ProjectDir)log4net.config<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>常用的ORACLE命令</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1970.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Mon, 24 Mar 2008 07:06:41 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[一、ORACLE的启动和关闭<br/>　　1、在单机环境下<br/>　　要想启动或关闭ORACLE系统必须首先切换到ORACLE用户，如下<br/>　　su - oracle<br/>　　<br/>　　a、启动ORACLE系统<br/>　　oracle&gt;svrmgrl<br/>　　SVRMGR&gt;connect internal<br/>　　SVRMGR&gt;startup<br/>　　SVRMGR&gt;quit<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>ListView假数据显示</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1929.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Fri, 29 Feb 2008 12:33:50 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[            this.listView1.FullRowSelect = true;<br/>            this.listView1.GridLines = true;<br/>            this.listView1.MultiSelect = false;<br/>            this.listView1.TabIndex = 0;<br/>            this.<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>在Winform中如何实现ListView排序</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1927.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Thu, 28 Feb 2008 13:37:17 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[using System;<br/>using System.Windows.Forms;<br/>using System.Drawing;<br/>using System.Collections;<br/><br/>namespace ListViewSortFormNamespace<br/>{ <br/>    public class ListViewSortForm : Form<br/>    {<br/>        private ListVie<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>Oracle客户穿越防火墙难题</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1926.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Wed, 27 Feb 2008 07:59:41 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[ 近来由于工作需要，在Windows XP平台上安装了Oracle9i数据库作为测试之用,一切正常。但当客户机连接服务器时却总是超时，我首先想到了防火墙，当我打开1521端口时，连接操作仍然失败。我又怀疑网络有问题，用telnet server_ip:1521尝试，连接被接受，说明1521端口已经被打开。<br/><br/>没有办法，查询Oracle资料后才明白，network listener 只起一个中介作用<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>用Visual C# 2005创建快捷方式</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1920.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Mon, 25 Feb 2008 09:34:44 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[　　创建快捷方式对于绝大多数 Windows 用户来说都是小菜一碟了，然而，这项工作却为程序员带来不少麻烦。.NET 没有提供简便直接的创建快捷方式的方法，那么在 .NET 中我们如何为应用程序创建快捷方式呢？<br/><br/>　　1. 快捷方式文件<br/><br/>　　快捷方式实质上是一个扩展名为 .LNK 的文件。右击一个快捷方式文件并选择属性，跳到快捷方式选项卡，如图1所示：<br/><br/>用Visual C# 2005创建快捷方<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>蔡学镛：2008编程语言走势解盘</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1370.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Wed, 06 Feb 2008 08:47:20 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[农历新年前，许多大师或老师会对名人、股市、甚至国家的运势做出各种分析，这倒是让我灵光乍现，想利用这段时间概略地分析今年编程语言的可能发展。<br/><br/>Java 类语言：Java似乎会逐渐走下坡。J2ME会受到Google Android、Adobe Flash Lite、.NET Compact Framework的影响；J2SE的对手则是.NET和AIR；J2EE在中小型网站受到PHP、Ruby-on-<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>Access 保留字</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1340.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Wed, 30 Jan 2008 08:16:23 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[Access数据库有一些保留字，不能用来命名表名，否则会出错，以下是保留字：<br/>-A<br/>ADD<br/>ALL<br/>Alphanumeric<br/>ALTER<br/>AND<br/>ANY<br/>Application<br/>AS<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>争对不同浏览器写不同的CSS 来兼容浏览器</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1254.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Sun, 06 Jan 2008 11:27:01 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[在做东西的时候发现在ie6.0中做的东西到ff下面目全非<br/>100% css不兼容不问题 查阅了相关资料 个人感觉以下是一个笨的也是比较快的处理兼容问题的方法<br/>方法就是针对不同的浏览器写不同的css 以前用!important 但是ie7 和ff 就不好分了<br/>个人感觉比较好的方法是 sample<br/>padding:0px;  /**//*ff这样写*/<br/>*padding:0px;  /**//*ie7<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>VBS登录QQ</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1191.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Sat, 08 Dec 2007 06:46:16 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[Dim qq,del<br/>Set qq=WScript.CreateObject(&quot;wscript.shell&quot;)<br/>qq.Run &quot;&quot;&quot;D:\Program Files\Tencent\QQ\qq.exe&quot;&quot;&quot; ' 这里填写QQ路径,此处填写绝对路径 . 三对双引号.请注意.<br/>WScript.Sleep 500<br/>q<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>用VC++编写CGI程序</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1158.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Sun, 25 Nov 2007 00:28:51 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[用VC++编写CGI程序<br/><br/>浙江大学生命科学与医学工程学系 徐晨勇 段会龙 吕维雪<br/>    摘 要   该文通过对CGI程序,特别是Windows CGI程序原理的分析,介绍了用Visual C+ +语言编写CGI程序的方法,并给出了一个用CGI程序使得WWW服务器与系统数据库相连的例子。<br/><br/><br/>关键词 CGI WWW HTML VC++ 数据库<br/><br/><br/>    近年来,Internet与Intrane<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>SQL Server 查询分析器快捷键集合</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1152.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Thu, 22 Nov 2007 07:04:36 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[书签：清除所有书签。 CTRL-SHIFT-F2 <br/>书签：插入或删除书签（切换）。 CTRL+F2 <br/>书签：移动到下一个书签。 F2 功能键 <br/>书签：移动到上一个书签。 SHIFT+F2 <br/>取消查询。 ALT+BREAK <br/>连接：连接。 CTRL+O <br/>连接：断开连接。 CTRL+F4 <br/>连接：断开连接并关闭子窗口。 CTRL+F4 <br/>数据库对象信息。 ALT+F1 <br/>编辑：清除活动的编辑器窗格。<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>让SVN作为windows系统服务自动运行</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1134.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Sat, 10 Nov 2007 06:45:06 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[方法一：<br/><br/>SVNService(将svn作为windows服务运行的工具)<br/><br/>SVN Service Wrapper for Windows<br/>This is my Win32 Service wrapper for SVN. Source is included, and its in the public domain. No need to copyright this stuff.<br/><br/>Us<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>面向对象建模与数据库建模两种分析设计方法的比较</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/1111.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Sat, 03 Nov 2007 00:42:08 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[板桥里人 http://www.jdon.com 2007/9/23（转载请保留）<br/><br/>　　我们知道：一个软件从无到有需要经过如下几个阶段：分析、设计、编程、调试、部署和运行。<br/><br/>　　 编程阶段我们通常使用Java/.NET这样面向对象语言工具，可以带来很多设计上的好处，但是也存在一个奇怪的现象：<br/>很多程序员虽然在使用OO语言，但是却在code非OO的代码，最终导致系统性能降低或失败，这个<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>在 CSS 中关于字体处理效果的思考</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/940.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Wed, 22 Aug 2007 09:15:19 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[原文：http://www.blueidea.com/tech/web/2003/10.asp<br/><br/>字体的处理在网页设计中无论怎么强调也不为过，毕竟网页使用来传递信息的，而最经典最直接的信息传递方式就是文字，所以，了解一点字体的基本知识对于设计来说还是非常重要的。<br/><br/>中文和英文的最大区别就是中文是方块字，英文是拼音文字，这对字体的处理的影响是巨大的。看看下面的图示就会发现，英文字体里的那些变化在中文<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>css对textbox加背景图片与color</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/923.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Thu, 16 Aug 2007 01:06:04 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot; &gt;<br/>&lt;HTML&gt;<br/>    &lt;HEAD&gt;<br/>        &lt;title&gt;testtxtbox&lt;/title&gt;<br/>        &lt;meta name=&quot;GENERATOR&qu<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
    <item>
      <title>javascript单选,隐藏显示表格</title>
      <link>http://www.gogosonny.net/gogosuibi/suibi/907.aspx</link>
      <author>GoGoSonny</author>
      <pubDate>Thu, 09 Aug 2007 03:06:51 GMT</pubDate>
      <category>代码文章</category>
      <description><![CDATA[http://zhidao.baidu.com/question/22497851.html<br/><br/>&lt;script type=&quot;text/javascript&quot;&gt; <br/>function show_tb(){ <br/>var tbobj=document.getElementById(&quot;tbname&quot;); <br/>tbobj.style.display=&<br>。。。。。。<br><br>更多内容请查看原文。]]></description>
    </item>
  </channel>
</rss>