<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>差一点 - 差一点的网销江湖</title>
	<atom:link href="http://www.chayidian.com/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.chayidian.com</link>
	<description>因为差一点，所以努力</description>
	<lastBuildDate>Sat, 08 Oct 2011 10:11:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>mageto 细节优化记录</title>
		<link>http://www.chayidian.com/?p=189</link>
		<comments>http://www.chayidian.com/?p=189#comments</comments>
		<pubDate>Sat, 08 Oct 2011 10:11:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=189</guid>
		<description><![CDATA[1.首先你应该去掉默认的标题 “Magento Commerce”. 后台点击 Configuration =&#62; Design =&#62; HTML Head. 为你的网站选一个描述性好的标题，这个标题也会在几个没有内容的页面中使用，比如“Contact Us” 和“Popular Search Terms”. 2.商品目录优化 Magento 给你增加目录名的权利，让你的目录指向产品的URL。因为Magento对建立相同的内容这个功能的支持不够，很好的方式就是禁用它。设置它，点击 System =&#62; Configuration =&#62; Catalog =&#62; Search Engine Optimization and set “Use categories path for product URL’s to “no”. &#160;]]></description>
			<content:encoded><![CDATA[<p>1.首先你应该去掉默认的标题 “Magento Commerce”. 后台点击 Configuration =&gt; Design =&gt; HTML Head. 为你的网站选一个描述性好的标题，这个标题也会在几个没有内容的页面中使用，比如“Contact Us” 和“Popular Search Terms”.</p>
<p>2.商品目录优化<br />
Magento 给你增加目录名的权利，让你的目录指向产品的URL。因为Magento对建立相同的内容这个功能的支持不够，很好的方式就是禁用它。设置它，点击 System =&gt; Configuration =&gt; Catalog =&gt; Search Engine Optimization and set “Use categories path for product URL’s to “no”.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JMAIL收取邮件无法连接问题</title>
		<link>http://www.chayidian.com/?p=187</link>
		<comments>http://www.chayidian.com/?p=187#comments</comments>
		<pubDate>Wed, 29 Jun 2011 17:20:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序人生]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=187</guid>
		<description><![CDATA[JMAIL收取邮件无法连接问题： JMAIL FREE 版本不行，要专业版才可以。试了很久才发现是这个问题。。。 Set POP3 = Server.CreateObject(&#8220;JMail.POP3&#8243;) pop3.Charset = HtmlCharSet &#8216;邮件的文字编码为国标 POP3.Connect &#8220;用户名&#8221;,&#8221;密码&#8221;,&#8221;POP服务器&#8221; POP3.DownloadHeaders totalemailcount=pop3.count If totalemailcount=&#8221;" Then totalemailcount=0 If totalemailcount &#62; 0 Then    response.write &#8220;共有&#8221;&#38;totalemailcount&#38;&#8221;封邮件&#8221;    For J=1 to totalemailcount     MSGFromName=POP3.Messages.Item(J).FromName   &#8216;发件人    MSGBody=POP.Messages.Item(J).Body            &#8216;纯文本内容    MSGHTMLBody=POP.Messages.Item(J).HTMLBody   &#8216;超文本内容    response.write MSGFromName&#38;&#8221;内容&#8221;&#38;MSGBody&#38;&#8221;超文本内容&#8221;&#38;MSGHTMLBody&#38;&#8221;&#60;br /&#62;&#8221;    Next End If POP3.Disconnect Set POP3=Nothing]]></description>
			<content:encoded><![CDATA[<p>JMAIL收取邮件无法连接问题：</p>
<p>JMAIL FREE 版本不行，要专业版才可以。试了很久才发现是这个问题。。。</p>
<p>Set POP3 = Server.CreateObject(&#8220;JMail.POP3&#8243;)<br />
pop3.Charset = HtmlCharSet &#8216;邮件的文字编码为国标<br />
POP3.Connect &#8220;用户名&#8221;,&#8221;密码&#8221;,&#8221;POP服务器&#8221;<br />
POP3.DownloadHeaders<br />
totalemailcount=pop3.count<br />
If totalemailcount=&#8221;" Then totalemailcount=0<br />
If totalemailcount &gt; 0 Then<br />
   response.write &#8220;共有&#8221;&amp;totalemailcount&amp;&#8221;封邮件&#8221;<br />
   For J=1 to totalemailcount <br />
   MSGFromName=POP3.Messages.Item(J).FromName   &#8216;发件人<br />
   MSGBody=POP.Messages.Item(J).Body            &#8216;纯文本内容<br />
   MSGHTMLBody=POP.Messages.Item(J).HTMLBody   &#8216;超文本内容</p>
<p>   response.write MSGFromName&amp;&#8221;内容&#8221;&amp;MSGBody&amp;&#8221;超文本内容&#8221;&amp;MSGHTMLBody&amp;&#8221;&lt;br /&gt;&#8221;<br />
   Next</p>
<p>End If<br />
POP3.Disconnect<br />
Set POP3=Nothing</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=187</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一些找回忘记密码基本操作</title>
		<link>http://www.chayidian.com/?p=184</link>
		<comments>http://www.chayidian.com/?p=184#comments</comments>
		<pubDate>Fri, 24 Jun 2011 04:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=184</guid>
		<description><![CDATA[1. ser-u 密码忘记了 怎么办？ ServUDaemon.ini 把管理密码那行去掉，重启SU的服务。 2.MYSQL密码忘记 可以通过所在网站 服务器配置中找到， 然后用phpMyAdmin 进行管理]]></description>
			<content:encoded><![CDATA[<p>1. ser-u 密码忘记了 怎么办？</p>
<p>ServUDaemon.ini 把管理密码那行去掉，重启SU的服务。</p>
<p>2.MYSQL密码忘记</p>
<p>可以通过所在网站 服务器配置中找到， 然后用phpMyAdmin 进行管理</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=184</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>百度优化指南（官方8月份公布）</title>
		<link>http://www.chayidian.com/?p=178</link>
		<comments>http://www.chayidian.com/?p=178#comments</comments>
		<pubDate>Tue, 14 Sep 2010 10:56:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=178</guid>
		<description><![CDATA[百度优化指南（官方8月份公布） baidu-seo-guide-download]]></description>
			<content:encoded><![CDATA[<p>百度优化指南（官方8月份公布）</p>
<p><a href="http://www.chayidian.com/wp-content/uploads/2010/09/baidu-seo-guide-download.rar">baidu-seo-guide-download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nfl jerseys 不解的排名</title>
		<link>http://www.chayidian.com/?p=172</link>
		<comments>http://www.chayidian.com/?p=172#comments</comments>
		<pubDate>Fri, 20 Aug 2010 16:15:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=172</guid>
		<description><![CDATA[    nfl jerseys 不解的排名 PR， 索引数，外链数都比其他少，却能排上去。。。继续观察之。]]></description>
			<content:encoded><![CDATA[<p> </p>
<p> </p>
<p>nfl jerseys 不解的排名</p>
<p><a href="http://www.chayidian.com/wp-content/uploads/2010/08/nfl-jerseys1.jpg"><img class="alignnone size-medium wp-image-175" title="nfl jerseys" src="http://www.chayidian.com/wp-content/uploads/2010/08/nfl-jerseys1-300x170.jpg" alt="nfl jerseys" width="500" height="270" /></a></p>
<p>PR， 索引数，外链数都比其他少，却能排上去。。。继续观察之。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>window 2003 IIS6.0 301重定向</title>
		<link>http://www.chayidian.com/?p=170</link>
		<comments>http://www.chayidian.com/?p=170#comments</comments>
		<pubDate>Thu, 12 Aug 2010 05:16:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=170</guid>
		<description><![CDATA[配置 URL 和通配符重定向 可以采用编程方式配置重定向到 URL 以及通配符重定向。使用重定向变量和标志可以通过更改 HttpRedirect 配置数据库属性来指定目标和行为。 以下示例显示了一个简单重定向字符串的格式。 http://DestinationURL[,Flag[s]] 其中，DestinationURL 可以包括以下重定向变量，以将初始 URL 中相关的部分传递给目标 URL。在单个重定向字符串中可以使用多个变量。 变量 描述 示例 $S  将请求的 URL 的后缀传递给新的 URL。后缀是用重定向的 URL 代替之后，初始 URL 中所保留的部分。 如果未设置 EXACT_DESTINATION 标志，则结果目标 URL 的名称将具有所请求文件的名称（作为文件夹名称）以及文件名本身。  如果映射到以下网站的虚拟目录： http://fabrikam/Scripts 配置为重定向到以下确切的 URL： http://fabrikam/NewScripts$S 对以下 URL 的新请求： http://fabrikam/Scripts/Program.exe 将自动重定向至以下 URL： http://fabrikam/NewScripts/Program.exe   $P  将初始 URL 中的参数（如 querystring 参数）传递至新的 URL，不包括问号 (?)。 如果映射到以下网站的虚拟目录： http://fabrikam/Scripts [...]]]></description>
			<content:encoded><![CDATA[<p>配置 URL 和通配符重定向<br />
可以采用编程方式配置重定向到 URL 以及通配符重定向。使用重定向变量和标志可以通过更改 HttpRedirect 配置数据库属性来指定目标和行为。</p>
<p>以下示例显示了一个简单重定向字符串的格式。</p>
<p><a href="http://destinationurl[,flag[s/">http://DestinationURL[,Flag[s</a>]]</p>
<p>其中，DestinationURL 可以包括以下重定向变量，以将初始 URL 中相关的部分传递给目标 URL。在单个重定向字符串中可以使用多个变量。</p>
<p>变量 描述 示例<br />
$S<br />
 将请求的 URL 的后缀传递给新的 URL。后缀是用重定向的 URL 代替之后，初始 URL 中所保留的部分。</p>
<p>如果未设置 EXACT_DESTINATION 标志，则结果目标 URL 的名称将具有所请求文件的名称（作为文件夹名称）以及文件名本身。<br />
 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>配置为重定向到以下确切的 URL：</p>
<p>http://fabrikam/NewScripts$S</p>
<p>对以下 URL 的新请求：</p>
<p>http://fabrikam/Scripts/Program.exe</p>
<p>将自动重定向至以下 URL：</p>
<p>http://fabrikam/NewScripts/Program.exe</p>
<p> <br />
$P<br />
 将初始 URL 中的参数（如 querystring 参数）传递至新的 URL，不包括问号 (?)。 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>配置为重定向到以下 URL：</p>
<p>http://fabrikam/NewScripts$P</p>
<p>对以下 URL 的新请求：</p>
<p>http://fabrikam/Scripts/File.asp?var1=5&#038;var2=6</p>
<p>将自动重定向至以下 URL：</p>
<p>http://fabrikam/NewScriptsvar1=5&#038;var2=6</p>
<p> <br />
$Q<br />
 将初始 URL 中的参数（如 querystring 参数）传递至新的 URL，包括问号 (?)。 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>配置为重定向到以下确切的 URL：</p>
<p>http://fabrikam/NewScripts$S$Q</p>
<p>对以下 URL 的新请求：</p>
<p>http://fabrikam/Scripts/File.asp?var1=5&#038;var2=6</p>
<p>将自动重定向至以下 URL：</p>
<p>http://fabrikam/NewScripts/File.asp?var1=5&#038;var2=6</p>
<p> <br />
$V<br />
 传递请求的 URL，不包括服务器名和任何参数。要包含参数，可使用 $P 或 $Q 变量及 $V 变量。</p>
<p>如果未设置 EXACT_DESTINATION 标志，则结果目标 URL 的名称将具有所请求文件的名称（作为文件夹名称）以及文件名本身。<br />
 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>配置为重定向到以下确切的 URL：</p>
<p>http://contoso$V</p>
<p>对以下 URL 的新请求：</p>
<p>http://fabrikam/Scripts/File.asp</p>
<p>将自动重定向至以下 URL：</p>
<p>http://contoso/Scripts/File.asp</p>
<p> <br />
使用通配符重定向<br />
可以使用重定向通配符匹配原来 URL 中的任意数目的字符。目标 URL 以星号 (*) 和分号 (;) 开头，成对的通配符和目标 URL 之间用分号分隔。以下示例显示了一个使用通配符的重定向字符串的格式。</p>
<p>*; Wildcard1; Destination1[; Wildcard2; Destination2][, Flags]</p>
<p>其中，WildcardN 可以包括星号 (*) 以匹配初始 URL 中任何数量的字符，并使用下表中定义的变量（$0 到 $9）将这些字符传递给 DestinationN。</p>
<p>变量 描述 示例<br />
$0 到 $9 传递被请求的 URL 中与指定的通配符相匹配的部分。对于每个 Wildcard;Destination 集，通配符必须从 $0 开始。重定向字符串必须附加 EXACT_DESTINATION 标志。<br />
 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>使用以下重定向字符串进行配置：</p>
<p>*; /Scripts/*_in.asp; /NewScripts/$0.dll; /Scripts/*_out.asp; http://contoso/NewScripts/$0.dll</p>
<p>对以下 URL 的新请求：</p>
<p>http://fabrikam/Scripts/data_in.asp</p>
<p>http://fabrikam/Scripts/data_out.asp</p>
<p>将分别自动重定向至以下 URL：</p>
<p>http://fabrikam/NewScripts/data.dll</p>
<p>http://contoso/NewScripts/data.dll</p>
<p> <br />
!<br />
 不允许重定向。</p>
<p>如果当父目录配置为重定向时要使文件或子目录不被重定向，那么可以使用该变量。<br />
 如果映射到以下网站的虚拟目录：</p>
<p>http://fabrikam/Scripts</p>
<p>配置为重定向到以下网站之外的位置：</p>
<p>http://fabrikam/Scripts/Commerce/Accounts</p>
<p>则必须免除重定向，以编程方式将被免除文件夹的重定向字符串设置为：</p>
<p>*;!<br />
 <br />
例如，要将所有对 /Scripts/Filename.stm 的请求重定向到名为 Default.stm 的文件，并将所有对 /Scripts/Filename.htm 的请求重定向到 Default.htm 文件，请对 /Scripts 虚拟目录使用以下重定向请求：</p>
<p>*;Filename.stm;/Default.stm/Filename.htm;/Default.htm</p>
<p>使用重定向标志<br />
以下标志用于扩充 URL 或通配符格式的重定向字符串。允许多个标志。标志以编程方式附加到 HttpRedirect 中的重定向字符串中，或通过选中“IIS 管理器”中的复选框进行配置。</p>
<p>标志 用户界面复选框 描述<br />
EXACT_DESTINATION 上面输入的准确 URL<br />
 表示为 Destination 提供的值应被视作绝对目标位置。<br />
 <br />
CHILD_ONLY<br />
 该目录以下的目录<br />
 通知 IIS 应只发生一次重定向，因为目标位置为初始 URL 的子目录。此标志避免了循环。并且，仅当请求是重定向到初始 URL 的子文件夹或文件时，此标志才指示 IIS 重定向该请求。<br />
 <br />
PERMANENT<br />
 资源的永久重定向 表示永久重定向该资源。<br />
TEMPORARY<br />
 清除“资源的永久重定向”复选框 表示暂时重定向该资源。<br />
综述：实现网站的整体301跳转，设置 iis站点属性》主目录》重定向到URl 写入<a href="http://www.chayidian.com$S$Q">http://www.chayidian.com$S$Q</a> 并且选中 上面输入的准确URL和资源的永久重定向。即可使旧域名的网址参数完整传递到新的域名。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wprobot插件笔记（autoblog）</title>
		<link>http://www.chayidian.com/?p=168</link>
		<comments>http://www.chayidian.com/?p=168#comments</comments>
		<pubDate>Thu, 01 Jul 2010 10:52:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序人生]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=168</guid>
		<description><![CDATA[1.装wprobot，PHP必须要开启curl扩展。否则会出现Call to undefined function curl_init错误. 解决办法是这样的： 首先，打开php.ini，找到extension=php_curl.dll，然后去掉前面的“;”注释。重启apache即可。 　　如果还出现此类问题，先检查php.ini的extension_dir值是哪个目录，在那个目录下检查有无php_curl.dll，没有的请下载php_curl.dll，再把php目录中的libeay32.dll,ssleay32.dll拷到c:\windows\system32里面，重启apache，OK! 2.WPROBOT下多次翻译会报错，我不知道是否是网络问题，修改成2次翻译，就不会发生这个问题了。 3.MYSQL如果修改了密码，PHPADMIN要重新启动下，否则登陆不了，会保留COOKIES。]]></description>
			<content:encoded><![CDATA[<p>1.装wprobot，PHP必须要开启curl扩展。否则会出现<span style="font-size: small;">Call to undefined function <em>curl_init</em></span>错误.</p>
<p>解决办法是这样的：</p>
<p>首先，打开<span style="COLOR: #ff0000">php.ini</span>，找到<span style="COLOR: #339966">extension=php_curl.dll</span>，然后去掉前面的“;”注释。重启apache即可。</p>
<p>　　如果还出现此类问题，先检查<span style="COLOR: #ff0000">php.ini</span>的<span style="COLOR: #339966">extension_dir</span>值是哪个目录，在那个目录下检查有无<span style="COLOR: #339966">php_curl.dll</span>，没有的请下载<span style="COLOR: #0000ff">php_curl.dll</span>，再把php目录中的<span style="COLOR: #339966">libeay32.dll</span>,<span style="COLOR: #339966">ssleay32.dll</span>拷到<span style="COLOR: #993366">c:\windows\system32</span>里面，重启apache，OK!</p>
<p>2.WPROBOT下多次翻译会报错，我不知道是否是网络问题，修改成2次翻译，就不会发生这个问题了。</p>
<p>3.MYSQL如果修改了密码，PHPADMIN要重新启动下，否则登陆不了，会保留COOKIES。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQLSERVER的字段类型说明</title>
		<link>http://www.chayidian.com/?p=166</link>
		<comments>http://www.chayidian.com/?p=166#comments</comments>
		<pubDate>Sun, 20 Jun 2010 07:31:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序人生]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=166</guid>
		<description><![CDATA[SQLSERVER的字段类型说明 以下为SQL SERVER7.0以上版本的字段类型说明。SQL SERVER6.5的字段类型说明请参考SQL SERVER提供的说明。 　　 字段类型 描述 bit 0或1的整型数字 int 从-2^31(-2,147,483,648)到2^31(2,147,483,647)的整型数字 smallint 从-2^15(-32,768)到2^15(32,767)的整型数字 tinyint 从0到255的整型数字     decimal 从-10^38到10^38-1的定精度与有效位数的数字 numeric decimal的同义词     money 从-2^63(-922,337,203,685,477.5808)到2^63-1(922,337,203,685,477.5807)的货币数据，最小货币单位千分之十 smallmoney 从-214,748.3648到214,748.3647的货币数据，最小货币单位千分之十     float 从-1.79E+308到1.79E+308可变精度的数字 real 从-3.04E+38到3.04E+38可变精度的数字     datetime 从1753年1月1日到9999年12日31的日期和时间数据，最小时间单位为百分之三秒或3.33毫秒 smalldatetime 从1900年1月1日到2079年6月6日的日期和时间数据，最小时间单位为分钟     timestamp 时间戳，一个数据库宽度的唯一数字 uniqueidentifier 全球唯一标识符GUID     char 定长非Unicode的字符型数据，最大长度为8000 varchar 变长非Unicode的字符型数据，最大长度为8000 text 变长非Unicode的字符型数据，最大长度为2^31-1(2G)   [...]]]></description>
			<content:encoded><![CDATA[<p>SQLSERVER的字段类型说明</p>
<p>以下为SQL SERVER7.0以上版本的字段类型说明。SQL SERVER6.5的字段类型说明请参考SQL SERVER提供的说明。</p>
<p>　　</p>
<table style="height: 590px;" border="1" cellspacing="0" cellpadding="0" width="70%">
<tbody>
<tr>
<td width="23%" height="16">
<p align="center">字段类型</p>
</td>
<td width="77%" height="16">
<p align="center">描述</p>
</td>
</tr>
<tr>
<td width="23%" height="16">bit</td>
<td width="77%" height="16">0或1的整型数字</td>
</tr>
<tr>
<td width="23%" height="16">int</td>
<td width="77%" height="16">从-2^31(-2,147,483,648)到2^31(2,147,483,647)的整型数字</td>
</tr>
<tr>
<td width="23%" height="16">smallint</td>
<td width="77%" height="16">从-2^15(-32,768)到2^15(32,767)的整型数字</td>
</tr>
<tr>
<td width="23%" height="16">tinyint</td>
<td width="77%" height="16">从0到255的整型数字</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">decimal</td>
<td width="77%" height="16">从-10^38到10^38-1的定精度与有效位数的数字</td>
</tr>
<tr>
<td width="23%" height="16">numeric</td>
<td width="77%" height="16">decimal的同义词</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="13">money</td>
<td width="77%" height="13">从-2^63(-922,337,203,685,477.5808)到2^63-1(922,337,203,685,477.5807)的货币数据，最小货币单位千分之十</td>
</tr>
<tr>
<td width="23%" height="16">smallmoney</td>
<td width="77%" height="16">从-214,748.3648到214,748.3647的货币数据，最小货币单位千分之十</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">float</td>
<td width="77%" height="16">从-1.79E+308到1.79E+308可变精度的数字</td>
</tr>
<tr>
<td width="23%" height="16">real</td>
<td width="77%" height="16">从-3.04E+38到3.04E+38可变精度的数字</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">datetime</td>
<td width="77%" height="16">从1753年1月1日到9999年12日31的日期和时间数据，最小时间单位为百分之三秒或3.33毫秒</td>
</tr>
<tr>
<td width="23%" height="16">smalldatetime</td>
<td width="77%" height="16">从1900年1月1日到2079年6月6日的日期和时间数据，最小时间单位为分钟</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">timestamp</td>
<td width="77%" height="16">时间戳，一个数据库宽度的唯一数字</td>
</tr>
<tr>
<td width="23%" height="16">uniqueidentifier</td>
<td width="77%" height="16">全球唯一标识符GUID</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">char</td>
<td width="77%" height="16">定长非Unicode的字符型数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">varchar</td>
<td width="77%" height="16">变长非Unicode的字符型数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">text</td>
<td width="77%" height="16">变长非Unicode的字符型数据，最大长度为2^31-1(2G)</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">nchar</td>
<td width="77%" height="16">定长Unicode的字符型数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">nvarchar</td>
<td width="77%" height="16">变长Unicode的字符型数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">ntext</td>
<td width="77%" height="16">变长Unicode的字符型数据，最大长度为2^31-1(2G)</td>
</tr>
<tr>
<td width="23%" height="16"> </td>
<td width="77%" height="16"> </td>
</tr>
<tr>
<td width="23%" height="16">binary</td>
<td width="77%" height="16">定长二进制数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">varbinary</td>
<td width="77%" height="16">变长二进制数据，最大长度为8000</td>
</tr>
<tr>
<td width="23%" height="16">image</td>
<td width="77%" height="16">变长二进制数据，最大长度为2^31-1(2G)</td>
</tr>
</tbody>
</table>
<div><a title="WEB开发" href="http://blog.myspace.cn/zerolbipod/category/159574.aspx"></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP 一些设置</title>
		<link>http://www.chayidian.com/?p=164</link>
		<comments>http://www.chayidian.com/?p=164#comments</comments>
		<pubDate>Sun, 20 Jun 2010 04:11:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序人生]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=164</guid>
		<description><![CDATA[1.最近一直被wp-includes\pluggable.php on line 864困扰。今天终于找到答案了，只要把wp-config.php页面用编辑器打开，保存为ANSI格式，退出，然后在打开保存为UTF-8格式。问题就解决了。 2.WP程序要在zoundry raven上使用，必须开启Atom 发布协议.]]></description>
			<content:encoded><![CDATA[<p>1.最近一直被wp-includes\pluggable.php on line 864困扰。今天终于找到答案了，只要把wp-config.php页面用编辑器打开，保存为ANSI格式，退出，然后在打开保存为UTF-8格式。问题就解决了。</p>
<p>2.WP程序要在zoundry raven上使用，必须开启Atom 发布协议.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=164</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google adwords 如何申请退款？</title>
		<link>http://www.chayidian.com/?p=161</link>
		<comments>http://www.chayidian.com/?p=161#comments</comments>
		<pubDate>Fri, 18 Jun 2010 01:53:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.chayidian.com/?p=161</guid>
		<description><![CDATA[google adwords如何申请退回预付款余额？（仅限中国） 如果您要申请退款，请与我们联系。（点击这个按钮，然后写上原因就可以了） 我们会在收到您的申请后自动暂停投放您的广告并开始处理您的退款。请注意，您只能针对帐户的全部余额申请退款。 大约一周后，您会收到一封注明退款金额的电子邮件，数额为帐户余额减去所有未结费用。 退款会以电汇方式汇入您的银行帐户。为了确认您要使用的帐户，Google 代表会通过电话与您联系，请您确认银行帐户信息。请注意，整个退款过程可能需要 4-6 周。 在我们处理完您的退款后，您仍可以为您的 AdWords 帐户追加付款。收到您的追加付款后，我们会立即再次开始投放您的广告。 在提出申请退款后的 2 到 5 天内，您可以与我们联系并取消退款申请。取消申请后，您的广告将会恢复投放。 原文地址：http://adwords.google.com/support/aw/bin/answer.py?hl=cn&#38;answer=90155 大概1天后就会收到邮件。]]></description>
			<content:encoded><![CDATA[<div>google adwords如何申请退回预付款余额？（仅限中国）</div>
<div id="article-content-div">
<p>如果您要申请退款，请与我们联系。<span style="color: #ff0000;">（点击这个按钮，然后写上原因就可以了）</span></p>
<p>我们会在收到您的申请后自动暂停投放您的广告并开始处理您的退款。请注意，您只能针对帐户的全部余额申请退款。</p>
<p>大约一周后，您会收到一封注明退款金额的电子邮件，数额为帐户余额减去所有未结费用。</p>
<p>退款会以电汇方式汇入您的银行帐户。为了确认您要使用的帐户，Google 代表会通过电话与您联系，请您确认银行帐户信息。请注意，整个退款过程可能需要 4-6 周。</p>
<p>在我们处理完您的退款后，您仍可以为您的 AdWords 帐户追加付款。收到您的追加付款后，我们会立即再次开始投放您的广告。</p>
<p>在提出申请退款后的 2 到 5 天内，您可以与我们联系并取消退款申请。取消申请后，您的广告将会恢复投放。</p>
<p>原文地址：http://adwords.google.com/support/aw/bin/answer.py?hl=cn&amp;answer=90155</p>
<p>大概1天后就会收到邮件。</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.chayidian.com/?feed=rss2&#038;p=161</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

