<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.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:wfw="http://wellformedweb.org/CommentAPI/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.feedsky.com/tttblog" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/tttblog" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 17 Nov 2011 03:20:59 GMT</lastBuildDate><title>TTT BLOG</title><description>生活点滴，生活点滴，心得体会，希望与更多的朋友分享!关注Oracle, Delphi, Linux, unix, java,以及网站知识</description><image><url>http://www.feedsky.com/feed/tttblog/sc/gif</url><title>TTT BLOG</title><link>http://www.taoyoyo.net/ttt/</link></image><link>http://www.taoyoyo.net/ttt/</link><language>zh-CN</language><copyright>Powered By Z-Blog 1.8 Arwen Build 81206 蜀ICP备10030360号&amp;amp;nbsp;廊公备13100001344  Copyright@2005-2010 Taoyoyo.net, Inc. All Rights Reserved.</copyright><pubDate>Thu, 17 Nov 2011 03:43:35 GMT</pubDate><item><title>Oracal查看被锁对象及解锁方法</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726713/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=560</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=560&amp;key=b69b9216</trackback:ping><description>&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Oracal数据库中的一个表的一条记录被锁定时，既不能修改也不能删除（程序上没有响应）。&lt;/div&gt;&lt;div&gt;删除表对象也不行，报错：ORA_00054:资源正忙，要求指定NOWAIT&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;可以通过以下办法解决。&lt;/div&gt;&lt;div&gt;　　&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;--1，查看锁&lt;/div&gt;&lt;div&gt;Select * From v$locked_object;&lt;/div&gt;&lt;div&gt;--or&lt;/div&gt;&lt;div&gt;Select object_id,session_id,locked_mode From v$locked_object;&lt;/div&gt;&lt;div&gt;--or&lt;/div&gt;&lt;div&gt;Select b.owner,b.object_name,l.session_id,l.locked_mode&lt;/div&gt;&lt;div&gt;From v$locked_object l, dba_objects b&lt;/div&gt;&lt;div&gt;Where b.object_id=l.object_id&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--2，找出sid,serial#号&lt;/div&gt;&lt;div&gt;Select t2.username,t2.sid,t2.serial#,t2.logon_time&lt;/div&gt;&lt;div&gt;From v$locked_object t1,v$session t2&lt;/div&gt;&lt;div&gt;Where t1.session_id=t2.sid Order by t2.logon_time;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--以上两步可以直接用以下语句查出被锁记录的表名，SID，Serial#，用户名，机器名等信息。&lt;/div&gt;&lt;div&gt;select s.username, o.owner,o.object_name,o.object_type,&lt;/div&gt;&lt;div&gt;decode(l.type,'TM','TABLE LOCK', 'TX','ROW LOCK',NULL) LOCK_LEVEL,&lt;/div&gt;&lt;div&gt;s.sid,s.serial#,s.terminal,s.machine,s.program,s.osuser&lt;/div&gt;&lt;div&gt;from v$session s,v$lock l,dba_objects o&lt;/div&gt;&lt;div&gt;where s.sid=l.sid&lt;/div&gt;&lt;div&gt;and o.object_id=l.id1&lt;/div&gt;&lt;div&gt;and s.username is not null&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--3，解锁：杀死被锁的session(用上面查出的SID，Serial#)&lt;/div&gt;&lt;div&gt;Alter system Kill session 'sid,serial#'&lt;/div&gt;&lt;div&gt;--or&lt;/div&gt;&lt;div&gt;Alter system disconnect session 'sid, serial#' immediate;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;还可以采用重新启动数据库方法，这是笨方法啊~~&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726713/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726713/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>Oracle</category><pubDate>Thu, 17 Nov 2011 11:20:59 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/560.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/560.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/560.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726713/5856476</fs:itemid></item><item><title>野外生存知识：各类绳结的打法及用途</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726714/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=558</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=558&amp;key=1f713895</trackback:ping><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; line-height: normal; font-size: medium; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: normal; &quot;&gt;经常看m vs w的同学们肯定都想学习如何打绳结，虽然bear每集都说了下打法，不过想必或是因为速度过快或是因为讲解比较笼统，大家很难明白打法。这里收集了部分绳结的打法，拿出来与大家分享。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;font size=&quot;+0&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 半结&lt;br /&gt;&lt;br /&gt;OverhandKnot&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457406457.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：所有绳结的基本结。&lt;br /&gt;&lt;br /&gt;用途：防止滑动、或是在绳子未端绽开时可做为暂时防止继续脱线。&lt;br /&gt;&lt;br /&gt;缺点：当结打太紧或弄湿时很难解开。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;八字结&lt;br /&gt;&lt;br /&gt;Figure-of-EightKnot&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457445086.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：打法简单、易记。&lt;br /&gt;&lt;br /&gt;用途：可作为一条绳上的一个临时或简单中止，制动点。&lt;br /&gt;&lt;br /&gt;特征：即使两端拉得很紧，依然可以轻松解开。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;平结&lt;br /&gt;&lt;br /&gt;ReefKnot&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457448834.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;用途：将同一条绳的两端绑在一起。适用于连结同样粗细、同样质材的绳索；但不适用在较粗、表面光滑的绳索上。&lt;br /&gt;&lt;br /&gt;特征：缠绕方法一旦发生错误，结果可能会变成个不完全的活结，用力一拉结目就会散开。其结目如果拉得太紧，就不太容易解开；不过如果双手握住绳头，朝两边用力一拉，就可轻松解开。&lt;br /&gt;&lt;br /&gt;秘诀：左搭右、右搭左。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;称人结&lt;br /&gt;&lt;br /&gt;Bowline&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457443745.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：被称为绳结之王，为世界上最广为欢迎，于各种户外运动，甚至各行各业或日常生活中频繁的使用到。&lt;br /&gt;&lt;br /&gt;用途：当绳索系在其它物体或是在绳索的末端结成一个圈圈时使用&lt;br /&gt;&lt;br /&gt;特征：宜结宜解、配合保固安全性高、用途广泛、变化多端。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;双套结&lt;br /&gt;&lt;br /&gt;CloveHitch&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457445700.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：其它绳结的开头和结束之用。&lt;br /&gt;&lt;br /&gt;用途：通常应用在两端施力均等的物品上，适用于水平拉力之下。&lt;br /&gt;&lt;br /&gt;特征：具备极高的安全性，不过，如果只在绳索的一端使力的话，双套结的结目可能会乱掉或松开。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;三套结&lt;br /&gt;&lt;br /&gt;LashingforShear&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457445571.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：作用和双套结相同，但较为牢固。&lt;br /&gt;&lt;br /&gt;用途：应用在垂直方向的拖力。&lt;br /&gt;&lt;br /&gt;其它：又称为转动结(RollingHitch)，马格纳斯结(MagnusHitch)，拉绳结(Taut-lineHitch)，止索结(StopperHitch)。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;渔人结&lt;br /&gt;&lt;br /&gt;FishermansKnot&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457440428.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：此结十分容易打，但很难拆开。故应尽量避免用在一些质地好的绳上，也不好用在会扯得很紧的绳上，因扯紧后，很难解开。&lt;br /&gt;&lt;br /&gt;用途：将两条绳绳连接一起，通常是硬和软的两条绳。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;普鲁士结&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457441702.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;营钉结&lt;br /&gt;&lt;br /&gt;RollingHitch&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457448435.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：可让你将结位在绳上随时上下移动。&lt;br /&gt;&lt;br /&gt;用途：用在各种斜拉绳的收尾。&lt;br /&gt;&lt;br /&gt;特征：可随时调较绳的松紧度。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;缩绳结&lt;br /&gt;&lt;br /&gt;SheepShank&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457453888.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;用途：将长绳收短，以免要因太长而要剪短，也可用此法加强绳上容易磨损部份的保护。&lt;br /&gt;&lt;br /&gt;特征：如绳太松，则此结很容易松散而失去作用。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;接绳结&lt;br /&gt;&lt;br /&gt;SheetBend&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;p&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457454584.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457454218.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;用途：将两条绳按在一起。&lt;br /&gt;&lt;br /&gt;特征：容易解开。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;拉柴结/系木结&lt;br /&gt;&lt;br /&gt;TimberHitch&lt;/p&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;div forimg=&quot;1&quot; align=&quot;center&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: normal; color: rgb(51, 51, 51); &quot;&gt;&lt;img class=&quot;blogimg&quot; border=&quot;0&quot; small=&quot;0&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/201111041457453601.jpg&quot; alt=&quot;&quot; /&gt;&lt;/div&gt;&lt;p style=&quot;line-height: normal; color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; &quot;&gt;&lt;br /&gt;&lt;br /&gt;简介：拥有一个可随意调整的圈。&lt;br /&gt;&lt;br /&gt;用途：绑紧及拖拉木材之类的物品。&lt;br /&gt;&lt;br /&gt;特征：虽然是一个方便可靠的结,但是一定要受到拉力，否则它将会松脱而导致危险。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726714/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726714/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>评论</category><pubDate>Fri, 04 Nov 2011 14:56:21 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/558.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/558.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/558.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726714/5856476</fs:itemid></item><item><title>[转]MySQL Server 5.0–安装及配置/MySQLInstanceConfig.exe用法详解</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726715/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=557</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=557&amp;key=43c45f9c</trackback:ping><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style=&quot;padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; line-height: 160%; &quot;&gt;&lt;blockquote&gt;&lt;p&gt;&lt;br /&gt;TTT说明：&lt;/p&gt;&lt;p&gt;下面是用图形界面配置mysql的方法，可以直接运行\bin\MySQLInstanceConfig.exe打开图形界面。&lt;/p&gt;&lt;p&gt;图形界面都是英文的，所以找到这篇说明!&lt;/p&gt;&lt;p&gt;这篇说明很不错，很详细!&lt;/p&gt;&lt;p&gt;来源：http://blog.csdn.net/davidxj/article/details/4201657&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server 5.0 &amp;ndash;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 51, 51); font-size: 14px; line-height: 26px; text-align: left; font-family: 宋体; &quot;&gt;安装及配置&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Author&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;Jeff&amp;nbsp;&amp;nbsp;&amp;nbsp;2006-2-20&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;关键字：&lt;/span&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;span lang=&quot;EN-US&quot;&gt;MySQL&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;配置&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;环境：&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Window XP Professional + SP2&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;MySQL Server 5.0&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;下载软件：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server 5.0.18&amp;nbsp;&lt;/span&gt;&lt;a style=&quot;color: rgb(51, 102, 153); text-decoration: none; &quot; href=&quot;http://dev.mysql.com/downloads/mysql/5.0.html&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;http://dev.mysql.com/downloads/mysql/5.0.html&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;下载&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，并安装在本地机器上。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;下面两个为&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Windows&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;图形界面工具。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Query Browser 1.1.20&amp;nbsp;&lt;/span&gt;&lt;a style=&quot;color: rgb(51, 102, 153); text-decoration: none; &quot; href=&quot;http://dev.mysql.com/downloads/query-browser/1.1.html&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;http://dev.mysql.com/downloads/query-browser/1.1.html&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;MySQL&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&amp;nbsp;Control Center&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&amp;nbsp;0.9.4&amp;nbsp;&lt;a style=&quot;color: rgb(51, 102, 153); text-decoration: none; &quot; href=&quot;http://mysql.easynet.be/Downloads/MySQLCC/mysqlcc-0.9.4-win32.zip&quot;&gt;http://mysql.easynet.be/Downloads/MySQLCC/mysqlcc-0.9.4-win32.zip&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;配置&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;步骤：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;1.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;运行&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;安装目录下&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;bin/MySQLInstanceConfig.exe&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。出现如下所示的向导界面&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_01.JPG&quot; /&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;点击&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Next&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;进入下一步。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;2.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;如果&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQLInstanceConfig&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;在&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;的安装目录下找到&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;my.ini&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;文件，就会询问：是重新配置&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;还是删除&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL service(&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;同时删除&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;my.ini&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;文件&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_02.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;否则的话，出现下面的配置界面：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_03.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Detailed Configuration&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：自己配置大部分，更好地控制&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL Server&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，让它更好地发挥作用。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Standard Configuration&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：系统配置大部分，不希望关注很多的&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Server&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;配置。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;这里选择&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Detailed Configuration&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;3.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;出现选择服务类型：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_04.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Developer Machine&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：主要为了个人使用，占用系统最少的资源。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Server Machine&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：主要用于像&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;FTP&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;email&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;web&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;服务器等等，耗用系统较多的资源。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Dedicated MySQL Server Machine&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：只用作&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;服务器，不运行其他程序。耗用系统所有可用的资源。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;个人学习研究用，选&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Developer Machine&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;4.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;出现设置数据库用法：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_05.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Multifunctional Database&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：使得&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;InnoDB&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;和&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MyISAM&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;存储引擎都可用，且资源平分。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Transactional Database Only&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：使得&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;InnoDB&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;和&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MyISAM&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;存储引擎都可用，但是&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;InnoDB&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;使用较多资源。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Non-Transactional Database Only&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：使&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;InnoDB&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;不可用，所有资源分配给&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MyISAM&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;选择&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Multifunctional Database&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;5.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;设置&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;InnoDB datafile&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;存放位置，默认即可，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_06.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;6.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;出现选择并发连接设置对话框：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_07.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Decision Support(DSS)/OLAP&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：不需要大量的并发连接&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(20&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;个左右&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。默认值为&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;100&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Online Transaction Processing(OLTP)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：需要大量的并发连接，默认值为&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;500&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Manual Setting&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：个人设定了。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;选择&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Manual Setting&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;，从下拉框中选择&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;10&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next).&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;7.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;网络设定：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_08.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;默认的端口号为&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;3306&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，如果端口被占用或不希望使用&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;3306&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，可以更换。下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;8.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;选择缺省的字符集：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_09.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Standard Character Set&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Latin1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;为默认的字符集。主要用于西方欧洲国家的语言。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Best Support For Multilingualism&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;UTF8&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;为默认的字符集。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Manual Selected Default Character Set / Collation&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;：个人设定。&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;如果你希望数据库支持汉字，请选择&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;gb2312)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; text-indent: 18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;选择缺省的&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Standard Character Set&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;，下一步&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;(Next)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;9.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;设置服务名称，最好将&amp;ldquo;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Include Bin Directory in Windows PATH&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;rdquo;勾选：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_10.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;10.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;密码的设置，其余为默认：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_11.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;11.&lt;/span&gt;&lt;span style=&quot;font: normal normal normal 7pt/normal 'Times New Roman'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;执行，使配置生效。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 18pt; text-indent: -18pt; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_12.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;配置过程中出现的问题：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;1.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;在最后一个环节，执行到第四步，出现如下所示的错误。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&amp;nbsp;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_13.JPG&quot; /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;此时，按&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Skip&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;跳出，再重新执行&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQLInstanceConfig&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;，重复上次的选项，执行就可以通过了。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;这个主要出现在&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;remove instance&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;之后。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;2. Client does not support authentication protocol.&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&lt;code&gt;工具连接数据库时，若出现上述信息，请到命令行方式下对密码进行转换：&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;mysql&amp;gt; SET PASSWORD FOR &amp;lsquo;root&amp;rsquo;@&amp;rsquo;localhost&amp;rsquo; = OLD_PASSWORD(&amp;lsquo;newpassword&amp;rsquo;);&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;4.1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: black; font-family: 宋体; &quot;&gt;版本之后的密码采用&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;password hashing algorithm&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: black; font-family: 宋体; &quot;&gt;，有些工具连接数据库可能需要转换。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: black; &quot;&gt;3&lt;/span&gt;&lt;code&gt;&lt;span lang=&quot;EN&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;.&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;/span&gt;&lt;code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;连接&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQL&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;服务器时，如果不是同一台&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;PC&lt;/span&gt;&lt;/code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&lt;code&gt;机，出现连接不上。&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;在&amp;ldquo;设置&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-&amp;gt;&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;控制面板&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-&amp;gt;Windows&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&lt;code&gt;防火墙&amp;rdquo;，点击&amp;ldquo;例外&amp;rdquo;标签，&amp;ldquo;添加端口&amp;rdquo;后，出现：&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;&lt;code&gt;&amp;nbsp;&lt;img style=&quot;border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; &quot; alt=&quot;&quot; src=&quot;http://www.taoyoyo.net/ttt/upload/20111104_mysql_14.JPG&quot; /&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;code&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;适当设置范围。端口号为先前设定的端口号。&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQLInstanceConfig&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: 宋体; &quot;&gt;的命令行参数：&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;To use the Instance Configuration Wizard from the command line the following parameters can be used. These parameters have to be set to run from the command line&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-n&amp;lt;product name&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-p&amp;lt;path of installation&amp;gt; (no /bin)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-v&amp;lt;version&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Actions to perform&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-i&amp;nbsp;&amp;nbsp;(install instance)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-r&amp;nbsp;&amp;nbsp;(remove instance)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-s&amp;nbsp;&amp;nbsp;(stop instance)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-q&amp;nbsp;&amp;nbsp;(be quiet)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;color: red; &quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-lfilename&amp;nbsp;&amp;nbsp;(write log file)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;When launched manually, these can also be submitted&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-t&amp;lt;.cnf template filename&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;-c&amp;lt;.cnf filename&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Use the following option to define the parameters for the config file generation.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;ServiceName=$&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;AddBinToPath={yes | no}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;ServerType={DEVELOPMENT | SERVER | DEDICATED}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;DatabaseType={MIXED | INNODB | MYISAM}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;ConnectionUsage={DSS | OLTP}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;ConnectionCount=#&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;SkipNetworking={yes | no}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Port=#&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;StrictMode={yes | no}&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Charset=$&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;RootPassword=$&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;RootCurrentPassword=$&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;The return codes of the Wizard in case of an error are.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;2 ... Configuration template file cannot be found.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;3 ... The Windows service entry cannot be created.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;4 ... Could not connect to the Service Control Manager.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;5 ... The MySQL service cannot be started.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;6 ... The MySQL service cannot be stopped.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;7 ... The security settings cannot be applied.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;8 ... The configuration file cannot be written.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;9 ... The Windows service entry cannot be removed.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Examples:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;The following command installs a MySQL Server 5.0 instance from the directory&amp;nbsp;&lt;br /&gt;C:/Programme/MySQL/MySQL Server 5.0 using the service name MySQLCust and settingthe root password to 1234.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQLInstanceConfig.exe -i -q &amp;quot;-lC:/mysql_install_log.txt&amp;quot; &amp;quot;-nMySQL Server 5.0&amp;quot;&amp;nbsp;&lt;br /&gt;&amp;quot;-pC:/Programme/MySQL/MySQL Server 5.0&amp;quot; -v5.0.13 &amp;quot;-t../../res/my-template.ini&amp;quot; &amp;quot;-cC:/mytest.ini&amp;quot;&amp;nbsp;&lt;br /&gt;ServerType=DEVELOPMENT DatabaseType=MIXED ConnectionUsage=DSS Port=3311&amp;nbsp;&lt;br /&gt;ServiceName=MySQLCust RootPassword=1234&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;If the server can not be started, the exit code is 2.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;The following command removes the server instance with the name MySQLCust.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MySQLInstanceConfig.exe -r -q &amp;quot;-lC:/mysql_install_log.txt&amp;quot; &amp;quot;-nMySQL Server 5.0&amp;quot;&amp;nbsp;&lt;br /&gt;&amp;quot;-pC:/Programme/MySQL/MySQL Server 5.0&amp;quot; -v5.0.13 &amp;quot;-cC:/mytest.ini&amp;quot; ServiceName=MySQLCust&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Output into the log file:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;----------------------------------------&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Welcome to the MySQL Server Instance Configuration Wizard 1.0.6&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Date: 2005-10-19 21:53:16&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Installing service ...&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Product Name:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;MySQL Server 5.0&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Version:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5.0.13&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Installation Path:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;C:/Programme/MySQL/MySQL Server 5.0/&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Creating configuration file C:/mytest.ini using template ../../res/my-template.ini.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Options:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;DEVELOPMENT&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;MIXED&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;DSS&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;STRICTMODE&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Variables:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;port: 3311&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;default-character-set: latin1&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;basedir: &amp;quot;C:/Programme/MySQL/MySQL Server 5.0/&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;datadir: &amp;quot;C:/Programme/MySQL/MySQL Server 5.0/Data/&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Creating Windows service entry.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Service Name: &amp;quot;MySQLCust&amp;quot;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Parameters:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;C:/Programme/MySQL/MySQL Server 5.0/bin/mysqld-nt&amp;quot; --defaults-file=&amp;quot;C:/mytest.ini&amp;quot; MySQLCust.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Windows service MySQLCust installed.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Service started successfully.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;The security settings could not be applied to the database because the connection has failed with the following error.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Error Nr. 1045&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Access denied for user 'root'@'localhost' (using password: NO)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;----------------------------------------&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Welcome to the MySQL Server Instance Configuration Wizard 1.0.6&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Date: 2005-10-19 21:53:46&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Removing Service...&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Instance stopped.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Windows Service removed.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Service Name: MySQLCust&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Configuration file removed.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;color: rgb(51, 51, 51); font-family: Arial; font-size: 14px; line-height: 26px; text-align: left; margin-top: 0cm; margin-right: 0cm; margin-bottom: 0pt; margin-left: 0cm; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: 'Microsoft Sans Serif'; &quot;&gt;Filename: C:/mytest.ini&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726715/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726715/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>MySql</category><pubDate>Thu, 03 Nov 2011 16:30:13 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/557.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/557.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/557.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726715/5856476</fs:itemid></item><item><title>FCKeditor用法详解</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726716/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=556</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=556&amp;key=7d629f34</trackback:ping><description>&lt;p&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#00ffff&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;div class=&quot;date&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 18px; margin-top: 5px; margin-right: 0px; margin-bottom: 8px; margin-left: 0px; color: rgb(58, 106, 155); text-align: -webkit-left; background-color: rgb(4, 19, 40); &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;2007-06-27 09:43&lt;/span&gt;&lt;/div&gt;&lt;table style=&quot;table-layout: fixed; font-family: Arial; background-color: rgb(4, 19, 40); width: 960px; &quot;&gt;    &lt;tbody&gt;        &lt;tr&gt;            &lt;td style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 18px; &quot;&gt;            &lt;div id=&quot;blog_text&quot; class=&quot;cnt&quot; style=&quot;font-family: Arial; word-wrap: break-word; word-break: normal; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: 20px; color: rgb(58, 106, 155); overflow-x: hidden; overflow-y: hidden; position: relative !important; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;FCKeditor至今已经到了2.3.1版本了，对于国内的WEB开发者来说，也基本上都已经&amp;ldquo;闻风知多少&amp;rdquo;了，很多人将其融放到自己的项目中，更有很多大型的网站从中吃到了甜头。今天开始，我将一点点的介绍自己在使用FCKeditor过程中总结的一些技巧，当然这些其实是FCK本来就有的，只是很多人用FCK的时候没发现而已 :P&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;strong style=&quot;line-height: normal; &quot;&gt;1、适时打开编辑器&lt;/strong&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            很多时候，我们在打开页面的时候不需要直接打开编辑器，而在用到的时候才打开，这样一来有很好的用户体验，另一方面可以消除FCK在加载时对页面打开速度的影响，如图所示&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707117081.gif&quot; width=&quot;16&quot; style=&quot;line-height: normal; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.taoyoyo.net/ttt/upload/201111011707115564.gif&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;(2006-9-28 05:45, 5.02 K)&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707117505.gif&quot; style=&quot;line-height: normal; width: 421px; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            点击&amp;ldquo;Open Editor&amp;quot;按钮后才打开编辑器界面&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707117081.gif&quot; width=&quot;16&quot; style=&quot;line-height: normal; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.taoyoyo.net/ttt/upload/201111011707128086.gif&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;(2006-9-28 05:45, 9.13 K)&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707124427.gif&quot; style=&quot;line-height: normal; width: 420px; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            实现原理：使用JAVASCRIPT版的FCK，在页面加载时（未打开FCK），创建一个隐藏的TextArea域，这个TextArea的name和ID要和创建的FCK实例名称一致，然后点击&amp;quot;Open Editor&amp;quot;按钮时，通过调用一段函数，使用FCK的ReplaceTextarea()方法来创建FCKeditor，代码如下：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;!--&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function showFCK(){&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var oFCKeditor = new FCKeditor( 'fbContent' ) ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.BasePath = '/FCKeditor/' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.ToolbarSet = 'Basic' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Width = '100%' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Height = '200' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.ReplaceTextarea() ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //--&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;textarea name=&amp;quot;fbContent&amp;quot; id=&amp;quot;fbContent&amp;quot;&amp;gt;textarea&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;strong style=&quot;line-height: normal; &quot;&gt;2、使用FCKeditor 的 API&lt;/strong&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            FCKeditor编辑器，提供了非常丰富的API，用于给End User实现很多想要定制的功能，比如最基本的数据验证，如何在提交的时候用JS判断当前编辑器区域内是否有内容，FCK的API提供了GetLength()方法；&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            再比如如何通过脚本向FCK里插入内容，使用InsertHTML()等；&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            还有，在用户定制功能时，中间步骤可能要执行FCK的一些内嵌操作，那就用ExecuteCommand()方法。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            详细的API列表，请查看FCKeditor的Wiki。而常用的API，请查看FCK压缩包里的_samples/html/sample08.html。此处就不贴代码了。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;strong style=&quot;line-height: normal; &quot;&gt;3、外联编辑条（多个编辑域共用一个编辑条）&lt;/strong&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            这个功能是2.3版本才开始提供的，以前版本的FCKeditor要在同一个页面里用多个编辑器的话，得一个个创建，现在有了这个外联功能，就不用那么麻烦了，只需要把工具条放在一个适当的位置，后面就可以无限制的创建编辑域了，如图&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707117081.gif&quot; width=&quot;16&quot; style=&quot;line-height: normal; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://www.taoyoyo.net/ttt/upload/201111011707124668.gif&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;(2006-9-28 05:45, 6.59 K)&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707120741.gif&quot; width=&quot;408&quot; style=&quot;line-height: normal; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            要实现这种功能呢，需要先在页面中定义一个工具条的容器：&amp;lt;div id=&amp;quot;xToolbar&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;，然后再根据这个容器的id属性进行设置。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            ASP实现代码：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;lt;div id=&amp;quot;fckToolBar&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;%&amp;nbsp;&lt;br /&gt;            Dim oFCKeditor&amp;nbsp;&lt;br /&gt;            Set oFCKeditor = New FCKeditor&amp;nbsp;&lt;br /&gt;            with oFCKeditor&amp;nbsp;&lt;br /&gt;            .BasePath = fckPath&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;ToolbarLocation&amp;quot;) = &amp;quot;Out:fckToolBar&amp;quot;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            .ToolbarSet = &amp;quot;Basic&amp;quot;&amp;nbsp;&lt;br /&gt;            .Width = &amp;quot;100%&amp;quot;&amp;nbsp;&lt;br /&gt;            .Height = &amp;quot;200&amp;quot;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            .Value = &amp;quot;&amp;quot;&amp;nbsp;&lt;br /&gt;            .Create &amp;quot;jcontent&amp;quot;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            .Height = &amp;quot;150&amp;quot;&amp;nbsp;&lt;br /&gt;            .Value = &amp;quot;&amp;quot;&amp;nbsp;&lt;br /&gt;            .Create &amp;quot;jreach&amp;quot;&amp;nbsp;&lt;br /&gt;            end with&amp;nbsp;&lt;br /&gt;            %&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            JAVASCRIPT实现代码：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;lt;div id=&amp;quot;xToolbar&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;nbsp;&lt;br /&gt;            FCKeditor 1:&amp;nbsp;&lt;br /&gt;            &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;!--&amp;nbsp;&lt;br /&gt;            // Automatically calculates the editor base path based on the _samples directory.&amp;nbsp;&lt;br /&gt;            // This is usefull only for these samples. A real application should use something like this:&amp;nbsp;&lt;br /&gt;            // oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.&amp;nbsp;&lt;br /&gt;            var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            var oFCKeditor = new FCKeditor( 'FCKeditor_1' ) ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.BasePath = sBasePath ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Height = 100 ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Value = 'This is some &amp;lt;strong&amp;gt;sample text&amp;lt;/strong&amp;gt;. You are using FCKeditor.' ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Create() ;&amp;nbsp;&lt;br /&gt;            //--&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;/script&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;br /&amp;gt;&amp;nbsp;&lt;br /&gt;            FCKeditor 2:&amp;nbsp;&lt;br /&gt;            &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;!--&amp;nbsp;&lt;br /&gt;            oFCKeditor = new FCKeditor( 'FCKeditor_2' ) ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.BasePath = sBasePath ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Height = 100 ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Config[ 'ToolbarLocation' ] = 'Out:parent(xToolbar)' ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Value = 'This is some &amp;lt;strong&amp;gt;sample text&amp;lt;/strong&amp;gt;. You are using FCKeditor.' ;&amp;nbsp;&lt;br /&gt;            oFCKeditor.Create() ;&amp;nbsp;&lt;br /&gt;            //--&amp;gt;&amp;nbsp;&lt;br /&gt;            &amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            此部分的详细DEMO请参照_samples/html/sample11.html，_samples/html/sample11_frame.html&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;strong style=&quot;line-height: normal; &quot;&gt;4、文件管理功能、文件上传的权限问题&lt;/strong&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            一直以后FCKeditor的文件管理部分的安全是个值得注意，但很多人没注意到的地方，虽然FCKeditor在各个Release版本中一直存在的一个功能就是对上传文件类型进行过滤，但是她没考虑过另一个问题：到底允许谁能上传？到底谁能浏览服务器文件？&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            之前刚开始用FCKeditor时，我就出现过这个问题，还好NetRube（FCKeditor中文化以及FCKeditor ASP版上传程序的作者）及时提醒了我，做法是去修改FCK上传程序，在里面进行权限判断，并且再在fckconfig.js里把相应的一些功能去掉。但随之FCK版本的不断升级，每升一次都要去改一次配置程序fckconfig.js，我发觉厌烦了，就没什么办法能更好的控制这种配置么？事实上，是有的。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            在fckconfig.js里面，有关于是否打开上传和浏览服务器的设置，在创建FCKeditor时，通过程序来判断是否创建有上传浏览功能的编辑器。首先，我先在fckconfig.js里面把所有的上传和浏览设置全设为false，接着我使用的代码如下：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            ASP版本：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;lt;%&amp;nbsp;&lt;br /&gt;            Dim oFCKeditor&amp;nbsp;&lt;br /&gt;            Set oFCKeditor = New FCKeditor&amp;nbsp;&lt;br /&gt;            with oFCKeditor&amp;nbsp;&lt;br /&gt;            .BasePath = fckPath&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;ToolbarLocation&amp;quot;) = &amp;quot;Out:fckToolBar&amp;quot;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            if request.cookies(site_sn)(&amp;quot;issuper&amp;quot;)=&amp;quot;yes&amp;quot; then&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;LinkBrowser&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;ImageBrowser&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;FlashBrowser&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;LinkUpload&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;ImageUpload&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            .Config(&amp;quot;FlashUpload&amp;quot;) = &amp;quot;true&amp;quot;&amp;nbsp;&lt;br /&gt;            end if&amp;nbsp;&lt;br /&gt;            .ToolbarSet = &amp;quot;Basic&amp;quot;&amp;nbsp;&lt;br /&gt;            .Width = &amp;quot;100%&amp;quot;&amp;nbsp;&lt;br /&gt;            .Height = &amp;quot;200&amp;quot;&amp;nbsp;&lt;br /&gt;            &lt;br /&gt;            .Value = &amp;quot;&amp;quot;&amp;nbsp;&lt;br /&gt;            .Create &amp;quot;jcontent&amp;quot;&amp;nbsp;&lt;br /&gt;            %&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            JAVASCRIPT版本：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var oFCKeditor = new FCKeditor( 'fbContent' ) ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;%if power = powercode then%&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['LinkBrowser'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['ImageBrowser'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['FlashBrowser'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['LinkUpload'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['ImageUpload'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Config['FlashUpload'] = true ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;%end if%&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.ToolbarSet = 'Basic' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Width = '100%' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Height = '200' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Value = '' ;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.Create() ;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;font size=&quot;3&quot; style=&quot;line-height: normal; &quot;&gt;&lt;strong&gt;在按钮旁边加文字&lt;/strong&gt;&lt;/font&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            1打开&lt;br style=&quot;line-height: normal; &quot; /&gt;            editor/js/ 两个js文件&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;fckeditorcode_gecko.js&lt;br /&gt;            fckeditorcode_ie.js&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            第一个是支持非ie浏览器的&lt;br style=&quot;line-height: normal; &quot; /&gt;            第二个文件是支持ie浏览器的&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            搜索 FCKToolbarButton&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            可以看到许多类似这样的语句&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;case 'Save':B=new FCKToolbarButton('Save',FCKLang.Save,null,null,true,null,3);break;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            'Save'是按钮英文名字&lt;br style=&quot;line-height: normal; &quot; /&gt;            FCKToolbarButton 的四个参数分别是:&lt;br style=&quot;line-height: normal; &quot; /&gt;            按钮命令名称,按钮标签文字,按钮工具提示,按钮样式,按钮是否在源代码模式可见,按钮下拉菜单,&lt;br style=&quot;line-height: normal; &quot; /&gt;            其中将第4项参数设置为 FCK_TOOLBARITEM_ICONTEXT 即可使按钮旁边出现文字,注意没有引号.&lt;br style=&quot;line-height: normal; &quot; /&gt;            例如：&lt;br style=&quot;line-height: normal; &quot; /&gt;            ;case 'Preview':B=new FCKToolbarButton('Preview',FCKLang.Preview,null,FCK_TOOLBARITEM_ICONTEXT,true,null,5);&lt;br style=&quot;line-height: normal; &quot; /&gt;            这样我们就可以将 我们经常用的3种模式源代码、预览、全屏编辑 按钮都加上文字了&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            ps:本来自己也想发一个，可是整理得不全。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            [&lt;em style=&quot;line-height: normal; &quot;&gt;&amp;nbsp;本帖最后由 mickeyboy 于 2006-9-22 09:37 编辑&amp;nbsp;&lt;/em&gt;]&lt;/span&gt;&lt;/div&gt;            &lt;p style=&quot;line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br /&gt;            &lt;br /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707117081.gif&quot; width=&quot;16&quot; style=&quot;cursor: pointer; &quot; alt=&quot;&quot; /&gt;&lt;/span&gt;&lt;a href=&quot;http://www.taoyoyo.net/ttt/upload/201111011707121686.png&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;(2006-9-22 09:19, 3.9 K)&lt;br /&gt;            &lt;br /&gt;            &lt;img src=&quot;http://www.taoyoyo.net/ttt/upload/201111011707122154.png&quot; style=&quot;width: 458px; cursor: pointer; &quot; alt=&quot;&quot; /&gt;&amp;nbsp;&lt;br /&gt;            &lt;/span&gt;&lt;/p&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;font size=&quot;3&quot; style=&quot;line-height: normal; &quot;&gt;&lt;strong&gt;php快速上传问题&lt;/strong&gt;&lt;/font&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            版本 fck2.3.1&lt;br style=&quot;line-height: normal; &quot; /&gt;            使用php快速上传的时候有一个问题,如果你指定的是一个动态的路径,比如 upload/YYYMMMDD,那么当文件夹不存在的时候fck似乎不给你建立新文件夹。我加了几行代码才解决&lt;br style=&quot;line-height: normal; &quot; /&gt;            /filemanager/upload/php/upload.php&lt;br style=&quot;line-height: normal; &quot; /&gt;            97行插入&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(!(file_exists($sServerDir) and is_dir($sServerDir)))&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mkdir($sServerDir,0777);&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;font size=&quot;3&quot; style=&quot;line-height: normal; &quot;&gt;&lt;strong&gt;与表单验证程序配合使用&lt;/strong&gt;&lt;/font&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            如果你同时使用了表单验证程序来检查输入的内容，可能会发现第一次提交的时候会提示&amp;ldquo;内容为空&amp;rdquo;。然后再点提交就好了。这是因为fck在第一次表单验证程序检查的时候还没有更新关联的文本框。我们需要手动关联一下&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var oEditor = FCKeditorAPI.GetInstance('Content') ;//Content是fck实例的名称,也是表单文本框的名称&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oEditor.UpdateLinkedField();&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;解释fck样式的工作原理&lt;br /&gt;            &lt;br /&gt;            &lt;/span&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;fck的样式设置涉及到了两个文件，一个是你定义好的样式表文件.css，另一个是告诉fck样式表如何使用的xml文件，两个文件确一不可。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; css文件的位置是不做要求的，但是需要你在应用的编辑器的页面上插入样式表文件的链接。这样才能显示出来样式。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fckstyles.xml 在与editor目录同级的目录下。该文件定义了那些样式可以使用在那些标签里面。&lt;br style=&quot;line-height: normal; &quot; /&gt;            这就是fck自带的样式xml定义&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;&lt;br /&gt;            &lt;br /&gt;            &amp;lt;Styles&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Image on Left&amp;quot; element=&amp;quot;img&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;style&amp;quot; value=&amp;quot;padding: 5px; margin-right: 5px&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;border&amp;quot; value=&amp;quot;2&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;align&amp;quot; value=&amp;quot;left&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Image on Right&amp;quot; element=&amp;quot;img&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;style&amp;quot; value=&amp;quot;padding: 5px; margin-left: 5px&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;border&amp;quot; value=&amp;quot;2&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;align&amp;quot; value=&amp;quot;right&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Custom Bold&amp;quot; element=&amp;quot;span&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;style&amp;quot; value=&amp;quot;font-weight: bold;&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Custom Italic&amp;quot; element=&amp;quot;em&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Title&amp;quot; element=&amp;quot;span&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;class&amp;quot; value=&amp;quot;Title&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Code&amp;quot; element=&amp;quot;span&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;class&amp;quot; value=&amp;quot;Code&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Title H3&amp;quot; element=&amp;quot;h3&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Custom Ruler&amp;quot; element=&amp;quot;hr&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;size&amp;quot; value=&amp;quot;1&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;color&amp;quot; value=&amp;quot;#ff0000&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;br /&gt;            &amp;lt;/Styles&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            每一个&amp;lt;style&amp;gt;将来会生成一个样式的菜单项。name名称就是显示在菜单里的文字 ；element定义了该样式可以应用在那种html标签上，&amp;lt;Attribute&amp;gt;的 name 指定了将会修改标签的哪个属性来应用样式 ,value则是修改成的值&lt;br style=&quot;line-height: normal; &quot; /&gt;            看这个&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgheader&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; &quot;&gt;            &lt;div class=&quot;right&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; &quot;&gt;&lt;a href=&quot;http://bbs.blueidea.com/thread-2678394-1-1.html###&quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;[Copy to clipboard]&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;            &lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;CODE:&lt;/span&gt;&lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Style name=&amp;quot;Title&amp;quot; element=&amp;quot;span&amp;quot;&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Attribute name=&amp;quot;class&amp;quot; value=&amp;quot;Title&amp;quot; /&amp;gt;&lt;br /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Style&amp;gt;&lt;/span&gt;&lt;/div&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            如果你在fck选定了文字 &amp;ldquo;经典论坛 &amp;raquo; 前台制作与脚本专栏 &amp;raquo; FCKeditor 实战技巧 - 1 &amp;raquo; 编辑帖子&amp;rdquo; 应用该样式 则原来文字&lt;br style=&quot;line-height: normal; &quot; /&gt;            就会变成&amp;lt;span class=&amp;quot;Title&amp;quot;&amp;gt;经典论坛 &amp;raquo; 前台制作与脚本专栏 &amp;raquo; FCKeditor 实战技巧 - 1 &amp;raquo; 编辑帖子&amp;lt;/span&amp;gt;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;font style=&quot;line-height: normal; &quot;&gt;注意&lt;/font&gt;：如果编辑器呈整页编辑状态，那么整页里面也需要插入样式表链接才能显示出来样式。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;/span&gt;&lt;/div&gt;            &lt;/div&gt;            &lt;div class=&quot;msgborder&quot; style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 12px; line-height: normal; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;【问】使用FCKeditor添加文章时，在文章最后多了逗号。&lt;br /&gt;            &lt;br /&gt;            &lt;/span&gt;            &lt;div style=&quot;word-wrap: break-word; word-break: break-all; visibility: visible !important; zoom: 1 !important; filter: none; font-size: 14px; line-height: 22px; width: 550px; &quot;&gt;&lt;span style=&quot;color: rgb(0, 255, 255); &quot;&gt;【答】此情况发生在asp环境中。在asp里对于 提交的表单信息中如果有相同name属性的键值对&amp;nbsp;&amp;nbsp; 做&amp;lsquo;逗号连接处理&amp;rsquo;&amp;nbsp;&lt;br style=&quot;line-height: normal; &quot; /&gt;            你们一定是使用了这样的js方法建立了编辑器&lt;br style=&quot;line-height: normal; &quot; /&gt;            var oFCKeditor = new FCKeditor( 'editor' ) ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            oFCoFCKeditor.Create() ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            然后 又在同一个表单里面 添加了 一个id=&amp;quot;editor&amp;quot; 或者 name =&amp;quot;editor&amp;quot;的 文本域&lt;br style=&quot;line-height: normal; &quot; /&gt;            造成的！这样的话载入以后，实际上存在了两个 名称为editor表单控件了 所以在提交更新的时候，浏览器会出现逗号。&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            解决的方法是：第一种：不要在表单里面 添加 多余的 名为 editor 的文本域了&lt;br style=&quot;line-height: normal; &quot; /&gt;            第二种：使用 fckeditor 的ReplaceTextarea()方法 ：&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            window.onload = function()&lt;br style=&quot;line-height: normal; &quot; /&gt;            {&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Automatically calculates the editor base path based on the _samples directory.&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // This is usefull only for these samples. A real application should use something like this:&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // oFCKeditor.BasePath = '/fckeditor/' ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // '/fckeditor/' is the default value.&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sBasePath = document.location.pathname.substring(0,document.location.pathname.lastIndexOf('_samples')) ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.BasePath&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = sBasePath ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFCKeditor.ReplaceTextarea() ;&lt;br style=&quot;line-height: normal; &quot; /&gt;            }&lt;br style=&quot;line-height: normal; &quot; /&gt;            具体的可以看 fckeditor的实例中的html实例第二个&lt;/span&gt;&lt;/div&gt;            &lt;/div&gt;            &lt;/div&gt;            &lt;/td&gt;        &lt;/tr&gt;    &lt;/tbody&gt;&lt;/table&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726716/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726716/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>网页编程</category><pubDate>Tue, 01 Nov 2011 17:05:59 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/556.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/556.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/556.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726716/5856476</fs:itemid></item><item><title>修改spfile参数的两点发现</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726717/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=555</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=555&amp;key=9f753190</trackback:ping><description>&lt;p&gt;&amp;nbsp;今天修改系统连接数，发现如下：&amp;nbsp;&lt;/p&gt;&lt;div&gt;发现：&lt;/div&gt;&lt;div&gt;1，修改spfile中的参数后，用spfile创建pfile，pfile并不会体现出来修改后的参数值。&lt;/div&gt;&lt;div&gt;2，修改processes，系统会同时修改session，但创建的pfile中，显示的session并不是当前的值。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;修改过程：&lt;/div&gt;&lt;div&gt;--查看当前使用的是spfile&lt;/div&gt;&lt;div&gt;SHOW PARAMETER PFILE;&lt;/div&gt;&lt;div&gt;--查看当前processes=450,sessions=500&lt;/div&gt;&lt;div&gt;SHOW PARAMETER PROCESSES;&lt;/div&gt;&lt;div&gt;SHOW PARAMETER SESSION;&lt;/div&gt;&lt;div&gt;--创建并查看pfile中processes=450;sessions=390&lt;/div&gt;&lt;div&gt;CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;--修改pfile参数：processes=610&lt;/div&gt;&lt;div&gt;ALTER SYSTEM SET PROCESSES=610 SCOPE=SPFILE;&lt;/div&gt;&lt;div&gt;--创建并查看pfile中processes=450;sessions=390&lt;strong&gt; (pfile并不会体现出来修改后的参数值。)？&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--重新启动数据库&lt;/div&gt;&lt;div&gt;STARTUP NOMOUNT&lt;/div&gt;&lt;div&gt;SHUTDOWN IMMEDIATE;&lt;/div&gt;&lt;div&gt;ALTER DATABASE MOUNT;&lt;/div&gt;&lt;div&gt;ALTER DATABASE OPEN;&lt;/div&gt;&lt;div&gt;--查看当前processes=610,sessions=676&lt;/div&gt;&lt;div&gt;SHOW PARAMETER PROCESSES;&lt;/div&gt;&lt;div&gt;SHOW PARAMETER SESSION;&lt;/div&gt;&lt;div&gt;--创建并查看pfile中processes=610;sessions=390&lt;strong&gt; (processes已经修改，但session还是值)&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;详细过程如下：&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;--查看当前使用的是spfile&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER PFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;spfile &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string &amp;nbsp; &amp;nbsp; &amp;nbsp;E:\ORACLE\PRODUCT\10.2.0\DB_1\&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DATABASE\SPFILEHS01.ORA&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--查看当前processes=450,sessions=500&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER PROCESSES;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;aq_tm_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;db_writer_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 3&lt;/div&gt;&lt;div&gt;gcs_server_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;job_queue_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 10&lt;/div&gt;&lt;div&gt;log_archive_max_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 2&lt;/div&gt;&lt;div&gt;processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 450&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER SESSION;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;java_max_sessionspace_size &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;java_soft_sessionspace_limit &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;license_max_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;license_sessions_warning &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;logmnr_max_persistent_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 1&lt;/div&gt;&lt;div&gt;session_cached_cursors &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 20&lt;/div&gt;&lt;div&gt;session_max_open_files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 10&lt;/div&gt;&lt;div&gt;sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 500&lt;/div&gt;&lt;div&gt;shared_server_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SQL&amp;gt; CONN / AS SYSDBA&lt;/div&gt;&lt;div&gt;Connected.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--创建pfile&lt;/div&gt;&lt;div&gt;SQL&amp;gt; CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;File created.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--查看pfile中processes=450;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--修改processes=610&lt;/div&gt;&lt;div&gt;SQL&amp;gt; ALTER SYSTEM SET PROCESSES=610 SCOPE=SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;System altered.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--创建pfile&lt;/div&gt;&lt;div&gt;SQL&amp;gt; CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;File created.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--查看pfile中processes=450;session=390&lt;/div&gt;&lt;div&gt;&lt;strong&gt;(修改spfile中的参数后，用spfile创建pfile，pfile并不会体现出来修改后的参数值。)&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--重新启动数据库&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHUTDOWN IMMEDIATE;&lt;/div&gt;&lt;div&gt;Database closed.&lt;/div&gt;&lt;div&gt;Database dismounted.&lt;/div&gt;&lt;div&gt;ORACLE instance shut down.&lt;/div&gt;&lt;div&gt;SQL&amp;gt; STARTUP NOMOUNT&lt;/div&gt;&lt;div&gt;ORACLE instance started.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Total System Global Area 2550136832 bytes&lt;/div&gt;&lt;div&gt;Fixed Size &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2153872 bytes&lt;/div&gt;&lt;div&gt;Variable Size &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 446505584 bytes&lt;/div&gt;&lt;div&gt;Database Buffers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2097152000 bytes&lt;/div&gt;&lt;div&gt;Redo Buffers &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4325376 bytes&lt;/div&gt;&lt;div&gt;SQL&amp;gt; ALTER DATABASE MOUNT;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Database altered.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SQL&amp;gt; ALTER DATABASE OPEN;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Database altered.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--查看当前processes=610,sessions=676&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER PROCESS;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;aq_tm_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;db_writer_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 3&lt;/div&gt;&lt;div&gt;gcs_server_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;job_queue_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 10&lt;/div&gt;&lt;div&gt;log_archive_max_processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 2&lt;/div&gt;&lt;div&gt;processes &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;integer &amp;nbsp; &amp;nbsp; 610&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER SESSION;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;java_max_sessionspace_size &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;java_soft_sessionspace_limit &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;license_max_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;license_sessions_warning &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 0&lt;/div&gt;&lt;div&gt;logmnr_max_persistent_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 1&lt;/div&gt;&lt;div&gt;session_cached_cursors &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 20&lt;/div&gt;&lt;div&gt;session_max_open_files &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 10&lt;/div&gt;&lt;div&gt;sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer &amp;nbsp; &amp;nbsp; 676&lt;/div&gt;&lt;div&gt;shared_server_sessions &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; integer&lt;/div&gt;&lt;div&gt;SQL&amp;gt; SHOW PARAMETER PFILE&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;NAME &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TYPE &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;VALUE&lt;/div&gt;&lt;div&gt;------------------------------------ ----------- ------------------------------&lt;/div&gt;&lt;div&gt;spfile &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; string &amp;nbsp; &amp;nbsp; &amp;nbsp;E:\ORACLE\PRODUCT\10.2.0\DB_1\&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DATABASE\SPFILEHS01.ORA&lt;/div&gt;&lt;div&gt;SQL&amp;gt; CREATE PFILE FROM SPFILE;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;File created.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;--查看pfile中processes=610;session=390&lt;/div&gt;&lt;div&gt;&lt;strong&gt;(修改processes，系统会同时修改session，但创建的pfile中，显示的session并不是当前的值，还是原来的值。)&lt;/strong&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726717/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726717/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>Oracle</category><pubDate>Tue, 27 Sep 2011 18:33:42 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/555.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/555.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/555.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726717/5856476</fs:itemid></item><item><title>[转]设置MSFLEXGRID控件可编辑示例</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726718/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=554</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=554&amp;key=14123360</trackback:ping><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;在MSFLEXGRID控件中每一个CELL格的内容是不可以由用户直接编辑的，但是我们可以通过一些小技巧来方便的实现这编辑功能来扩展MSFLEXGRID的应用（在实际应用中这是很常用的功能）。&lt;/div&gt;&lt;div&gt;你只需按下面的做即可轻松实现编辑MSFLEXGRID控件数据的功能&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;例：&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;在窗体上放一文本框text1，和一MSFLEXGRID控件flexgrid1，然后加入下例代码：&lt;/div&gt;&lt;div&gt;　　&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;Private Sub Form_Load()&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Text1.Move -10000, -10000, 1, 1&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub MSFlexGrid1_EnterCell()&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; MSFlexGrid1.CellBackColor = vbBlue&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; MSFlexGrid1.CellForeColor = vbWhite&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Text1.Text = MSFlexGrid1.Text&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Text1.SelStart = 0&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Text1.SelLength = Len(Text1.Text)&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub MSFlexGrid1_LeaveCell()&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; MSFlexGrid1.CellBackColor = vbWhite &amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; MSFlexGrid1.CellForeColor = vbBlue&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub MSFlexGrid1_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Text1.SetFocus&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub Text1_Change()&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; MSFlexGrid1.Text = Text1.Text&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Select Case KeyCode&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; Case vbKeyLeft, vbKeyRight, vbKeyUp, vbKeyDown&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; KeyCode = 0&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp; End Select&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;ok,这样一个可编辑的MSFLEXGRID控件就完成了!!&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;(来源：http://tech.ddvip.com/2006-07/11539061145751.html)&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726718/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726718/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>VB</category><pubDate>Wed, 14 Sep 2011 18:01:40 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/554.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/554.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/554.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726718/5856476</fs:itemid></item><item><title>[转]MsFlexGrid用法大全</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726719/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=553</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=553&amp;key=13273f37</trackback:ping><description>&lt;div&gt;&lt;div&gt;VB中MsFlexGrid控件的使用细则(收集)&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; 将文本赋值给MsFlexGrid的单元格&lt;/div&gt;&lt;div&gt;MsFlexGrid.TextMatrix(3,1)=&amp;rdquo;Hello&amp;rdquo;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; 在MsFlexGrid控件单元格中插入背景图形&lt;/div&gt;&lt;div&gt;Set MsFlexGrid.CellPicture=LoadPicture(&amp;ldquo;C:\temp\1.bmp&amp;rdquo;)&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;选中某个单元&lt;/div&gt;&lt;div&gt;MsFlexGrid.Row=1&lt;/div&gt;&lt;div&gt;MsFlexGrid.Col=1&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;用粗体格式化当前选中单元&lt;/div&gt;&lt;div&gt;MsFlexGrid.CellFontBold=True&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; 添加新的一行&lt;/div&gt;&lt;div&gt;使用AddItem方法,用Tab字符分开不同单元格的内容&lt;/div&gt;&lt;div&gt;dim row as string&lt;/div&gt;&lt;div&gt;row=&amp;rdquo;AAA&amp;rdquo;&amp;amp;vbtab&amp;amp;&amp;rdquo;bbb&amp;rdquo;&lt;/div&gt;&lt;div&gt;MsFlexFrid1.addItem row&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;怎样来实现MSFlexGrid控件单数行背景为白色，双数的行背景为蓝色?&lt;/div&gt;&lt;div&gt;Dim i As Integer&lt;/div&gt;&lt;div&gt;With MSFlexGrid1&lt;/div&gt;&lt;div&gt;.AllowBigSelection = True &amp;rsquo; 设置网格样式&lt;/div&gt;&lt;div&gt;.FillStyle = flexFillRepeat&lt;/div&gt;&lt;div&gt;For i = 0 To .Rows - 1&lt;/div&gt;&lt;div&gt;.Row = i: .Col = .FixedCols&lt;/div&gt;&lt;div&gt;.ColSel = .Cols() - .FixedCols - 1&lt;/div&gt;&lt;div&gt;If i Mod 2 = 0 Then&lt;/div&gt;&lt;div&gt;.CellBackColor = &amp;amp;HC0C0C0 &amp;rsquo; 浅灰&lt;/div&gt;&lt;div&gt;Else&lt;/div&gt;&lt;div&gt;.CellBackColor = vbBlue &amp;rsquo; 兰色&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;Next i&lt;/div&gt;&lt;div&gt;End With&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; MSFlexGrid控件如何移到最后一行&lt;/div&gt;&lt;div&gt;MSFlexGrid1.TopRow = MSFlexGrid1.Rows &amp;ndash; 1&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;如何判断msflexgrid有无滚动条&lt;/div&gt;&lt;div&gt;Declare Function GetScrollRange Lib &amp;quot;user32&amp;quot; (ByVal hWnd As Long, ByVal nBar As Long, lpMinPos As&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Long, lpMaxPos As Long) As Long&lt;/div&gt;&lt;div&gt;Public Const SB_HORZ = &amp;amp;H0&lt;/div&gt;&lt;div&gt;Public Const SB_VERT = &amp;amp;H1&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Public Function VsScroll(MshGrid As MSHFlexGrid) As Boolean &amp;rsquo;判断水平滚动条的可见性&lt;/div&gt;&lt;div&gt;Dim i As Long&lt;/div&gt;&lt;div&gt;VsScroll = False&lt;/div&gt;&lt;div&gt;i = GetScrollRange(MshGrid.hWnd, SB_HORZ, lpMinPos, lpMaxPos)&lt;/div&gt;&lt;div&gt;If lpMaxPos &amp;lt;&amp;gt; lpMinPos Then VsScroll = True&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Public Function HeScroll(MshGrid As MSHFlexGrid) As Boolean &amp;rsquo;判断垂直滚动条的可见性&lt;/div&gt;&lt;div&gt;Dim i As Long&lt;/div&gt;&lt;div&gt;HeScroll = False&lt;/div&gt;&lt;div&gt;i = GetScrollRange(MshGrid.hWnd, SB_VERT, lpMinPos, lpMaxPos)&lt;/div&gt;&lt;div&gt;If lpMaxPos &amp;lt;&amp;gt; lpMinPos Then HeScroll = True&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;程序运行时，想动态增加MSFlexgrid的列数&lt;/div&gt;&lt;div&gt;在第2列后插入一列：&lt;/div&gt;&lt;div&gt;Private Sub Form_Load()&lt;/div&gt;&lt;div&gt;Me.MSHFlexGrid1.Cols = 5&lt;/div&gt;&lt;div&gt;MSHFlexGrid1.Rows = 2&lt;/div&gt;&lt;div&gt;For i = 0 To Me.MSHFlexGrid1.Cols - 1&lt;/div&gt;&lt;div&gt;Me.MSHFlexGrid1.TextMatrix(0, i) = i&lt;/div&gt;&lt;div&gt;Me.MSHFlexGrid1.TextMatrix(1, i) = i&lt;/div&gt;&lt;div&gt;Next&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Private Sub Command1_Click()&lt;/div&gt;&lt;div&gt;Me.MSHFlexGrid1.Cols = Me.MSHFlexGrid1.Cols + 1&lt;/div&gt;&lt;div&gt;Me.MSHFlexGrid1.ColPosition(5) = 3&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; 请教MSFlexGrid中的对齐功能的使用&lt;/div&gt;&lt;div&gt;设置MSFlexGrid1.ColAlignment(index)=n&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;得到MSFlexGrid控件中当前选中的一行&lt;/div&gt;&lt;div&gt;msflexgrid1.rowsel就是当前选中行&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt; 如何通过代码调节列宽度&lt;/div&gt;&lt;div&gt;msflexgrid1.colwidth(i)=4000&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;gt;&amp;gt;将MsFlexGrid控件的内容输出到文本&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;2004-03-19 14:25:18&lt;/div&gt;&lt;div&gt;'OutDataToText&lt;/div&gt;&lt;div&gt;将MsFlexGrid控件中显示的内容输出到文本文件&lt;/div&gt;&lt;div&gt;Public Sub OutDataToText(Flex As MSFlexGrid)&lt;/div&gt;&lt;div&gt;Dim s As String&lt;/div&gt;&lt;div&gt;Dim i As Integer&lt;/div&gt;&lt;div&gt;Dim j As Integer&lt;/div&gt;&lt;div&gt;Dim k As Integer&lt;/div&gt;&lt;div&gt;Dim strTemp As String&lt;/div&gt;&lt;div&gt;On Error GoTo Ert&lt;/div&gt;&lt;div&gt;Me.MousePointer = 11&lt;/div&gt;&lt;div&gt;On Error Resume Next&lt;/div&gt;&lt;div&gt;DoEvents&lt;/div&gt;&lt;div&gt;Dim FileNum As Integer&lt;/div&gt;&lt;div&gt;FileNum = FreeFile&lt;/div&gt;&lt;div&gt;Open &amp;quot;d:aa.txt&amp;quot; For Output As #FileNum&lt;/div&gt;&lt;div&gt;With Flex&lt;/div&gt;&lt;div&gt;k = .Rows&lt;/div&gt;&lt;div&gt;For i = 0 To k - 1&lt;/div&gt;&lt;div&gt;strTemp = &amp;quot;&amp;quot;&lt;/div&gt;&lt;div&gt;For j = 0 To .Cols - 1&lt;/div&gt;&lt;div&gt;DoEvents&lt;/div&gt;&lt;div&gt;strTemp = strTemp &amp;amp; .TextMatrix(i, j) &amp;amp; &amp;quot;,&amp;quot;&lt;/div&gt;&lt;div&gt;Next j&lt;/div&gt;&lt;div&gt;Print #FileNum, Left(strTemp, Len(strTemp) - 1)&lt;/div&gt;&lt;div&gt;Next i&lt;/div&gt;&lt;div&gt;End With&lt;/div&gt;&lt;div&gt;Close #FileNum&lt;/div&gt;&lt;div&gt;Me.MousePointer = 0&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;导出成功&amp;quot;&lt;/div&gt;&lt;div&gt;Ert:&lt;/div&gt;&lt;div&gt;MsgBox Err.Description&lt;/div&gt;&lt;div&gt;Me.MousePointer = 0&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;+++&lt;/div&gt;&lt;div&gt;增加 MsFlexGrid 的编辑功能&lt;/div&gt;&lt;div&gt;（作者：佚名 加载日期: 2002/3/31）&lt;/div&gt;&lt;div&gt;---&lt;/div&gt;&lt;div&gt;概述&lt;/div&gt;&lt;div&gt;MsFlexGrid 控件没有提供文本编辑的功能，下面的例子演示了如何利用一个TextBox 实现编辑当前网格的功能。&lt;/div&gt;&lt;div&gt;在按下一个键后， 就把TextBox 移动到当前的位置， 并激活。 在键入回车或移动到其他网格时，&lt;/div&gt;&lt;div&gt;就把TextBox 中的内容放到网格中。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;实现步骤&lt;/div&gt;&lt;div&gt;1 打开 VB5， 开启一个新的工程。&lt;/div&gt;&lt;div&gt;2 在菜单&amp;ldquo;工程&amp;rdquo; 中选择 &amp;ldquo;部件&amp;rdquo;， 在列表中选中 &amp;ldquo;Microsoft FlexGrid Control ..&amp;rdquo;&lt;/div&gt;&lt;div&gt;3 放一个 MsFlexGrid 控件和一个TextBox 控件(Text1)到 Form1。 修改MsFlexGrid 控件的名称为 Grid1，&lt;/div&gt;&lt;div&gt;设置Grid1 的行，列 为 4， 固定行，列为 0。 设置 Text1 的 Visiable 为 False， BorderStyle 为None(0)。&lt;/div&gt;&lt;div&gt;4 在Form1 的代码中增加声明：&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Const ASC_ENTER = 13 '回车&lt;/div&gt;&lt;div&gt;Dim gRow As Integer&lt;/div&gt;&lt;div&gt;Dim gCol As Integer&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;5 增加代码到 Grid_KeyPress 过程：&lt;/div&gt;&lt;div&gt;Private Sub Grid1_KeyPress(KeyAscii As Integer)&lt;/div&gt;&lt;div&gt;' Move the text box to the current grid cell:&lt;/div&gt;&lt;div&gt;Text1.Top = Grid1.CellTop + Grid1.Top&lt;/div&gt;&lt;div&gt;Text1.Left = Grid1.CellLeft + Grid1.Left&lt;/div&gt;&lt;div&gt;' Save the position of the grids Row and Col for later:&lt;/div&gt;&lt;div&gt;gRow = Grid1.Row&lt;/div&gt;&lt;div&gt;gCol = Grid1.Col&lt;/div&gt;&lt;div&gt;' Make text box same size as current grid cell:&lt;/div&gt;&lt;div&gt;Text1.Width = Grid1.CellWidth - 2 * Screen.TwipsPerPixelX&lt;/div&gt;&lt;div&gt;Text1.Height = Grid1.CellHeight - 2 * Screen.TwipsPerPixelY&lt;/div&gt;&lt;div&gt;' Transfer the grid cell text:&lt;/div&gt;&lt;div&gt;Text1.Text = Grid1.Text&lt;/div&gt;&lt;div&gt;' Show the text box:&lt;/div&gt;&lt;div&gt;Text1.Visible = True&lt;/div&gt;&lt;div&gt;Text1.ZOrder 0 ' 把 Text1 放到最前面！&lt;/div&gt;&lt;div&gt;Text1.SetFocus&lt;/div&gt;&lt;div&gt;' Redirect this KeyPress event to the text box:&lt;/div&gt;&lt;div&gt;If KeyAscii &amp;lt;&amp;gt; ASC_ENTER Then&lt;/div&gt;&lt;div&gt;SendKeys Chr$(KeyAscii)&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;6 增加代码到 Text1_KeyPress 过程：&lt;/div&gt;&lt;div&gt;Private Sub Text1_KeyPress(KeyAscii As Integer)&lt;/div&gt;&lt;div&gt;If KeyAscii = ASC_ENTER Then&lt;/div&gt;&lt;div&gt;Grid1.SetFocus ' Set focus back to grid, see Text_LostFocus.&lt;/div&gt;&lt;div&gt;KeyAscii = 0 ' Ignore this KeyPress.&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;7 增加代码到 Text1_LostFocus 过程：&lt;/div&gt;&lt;div&gt;Private Sub Text1_LostFocus()&lt;/div&gt;&lt;div&gt;Dim tmpRow As Integer&lt;/div&gt;&lt;div&gt;Dim tmpCol As Integer&lt;/div&gt;&lt;div&gt;' Save current settings of Grid Row and col. This is needed only if&lt;/div&gt;&lt;div&gt;' the focus is set somewhere else in the Grid.&lt;/div&gt;&lt;div&gt;tmpRow = Grid1.Row&lt;/div&gt;&lt;div&gt;tmpCol = Grid1.Col&lt;/div&gt;&lt;div&gt;' Set Row and Col back to what they were before Text1_LostFocus:&lt;/div&gt;&lt;div&gt;Grid1.Row = gRow&lt;/div&gt;&lt;div&gt;Grid1.Col = gCol&lt;/div&gt;&lt;div&gt;Grid1.Text = Text1.Text ' Transfer text back to grid.&lt;/div&gt;&lt;div&gt;Text1.SelStart = 0 ' Return caret to beginning.&lt;/div&gt;&lt;div&gt;Text1.Visible = False ' Disable text box.&lt;/div&gt;&lt;div&gt;' Return row and Col contents:&lt;/div&gt;&lt;div&gt;Grid1.Row = tmpRow&lt;/div&gt;&lt;div&gt;Grid1.Col = tmpCol&lt;/div&gt;&lt;div&gt;End Sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;8 好了。 按 F5 开始测试。 您可以自由地在 Grid 中移动， 按回车可以开始或结束编辑。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;+++&lt;/div&gt;&lt;div&gt;关于MSFlexGrid可编辑的两种方法&lt;/div&gt;&lt;div&gt;---&lt;/div&gt;&lt;div&gt;2008年09月27日 星期六 下午 04:08&lt;/div&gt;&lt;div&gt;---&lt;/div&gt;&lt;div&gt;实现点击MSFlexGrid，就有一个text移上来供编辑：&lt;/div&gt;&lt;div&gt;下面总结两个方法：&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;方法一：&lt;/div&gt;&lt;div&gt;With MSFlexGrid1&lt;/div&gt;&lt;div&gt;Text1.Move .Left + .CellLeft, .Top + .CellTop, .CellWidth, .CellHeight&lt;/div&gt;&lt;div&gt;End With&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;此方法必须设置窗体的ScaleMode为1（缇为单位）。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;因为：CellHeight、CellLeft、CellTop 以及 CellWidth 属性，这些属性返回以缇为单位的当前单元的位置和大小，而MSFlexGrid1的.Left ，top是根据窗体的ScaleMode自动调整的（就是窗体是缇，MSFlexGrid1的.Left ，top就是缇，为某一个数，窗体是像素，MSFlexGrid1的.Left ，top就是像素，为另外某一个数。自动换算的。），所以要直接相加必须单位一样，所以必须为缇。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;方法二：&lt;/div&gt;&lt;div&gt;With MSFlexGrid1&lt;/div&gt;&lt;div&gt;' Text1.Move ScaleX(.CellLeft, 1, 3) + .Left, ScaleY(.CellTop, 1, 3) + .Top, ScaleX(.CellWidth, 1, 3), ScaleY(.CellHeight, 1, 3)&lt;/div&gt;&lt;div&gt;End With&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;此方法必须设置窗体的ScaleMode为3（像素为单位）。原因同上。要直接相加必须单位一样。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;+++&lt;/div&gt;&lt;div&gt;使用MsFlexGrid控件的几个函数&lt;/div&gt;&lt;div&gt;---&lt;/div&gt;&lt;div&gt;作者：中国论坛网收集 来源：http://www.51one.net 加入时间：2004-8-25&lt;/div&gt;&lt;div&gt;---&lt;/div&gt;&lt;div&gt;在VB处理数据显示的时候,使用表格是一种好的方法,虽然DataGrid可以与数据源绑定,但是总有美中不足,就是外观不好看,所以有时应用MsFlexGrid显示数据还是一种比较好的方法,以下几个函数是用来控制MsFlexGrid的程序&lt;/div&gt;&lt;div&gt;(本人语言表达能力有限,还请见谅)&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''MsFlexGrid操作函数&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''合并列&lt;/div&gt;&lt;div&gt;Public Function MergeCol(GridObj As Object, ByVal StartCol As Long, ByVal EndCol As Long, ByVal&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;ColValue As String, ByVal CurrentRow As Long) As Boolean&lt;/div&gt;&lt;div&gt;If StartCol &amp;gt; EndCol Or StartCol &amp;gt; GridObj.Cols Or CurrentRow &amp;gt; GridObj.Rows Then&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;对不起，行列设置错误！&amp;quot;, vbOKOnly, App.Title&lt;/div&gt;&lt;div&gt;MergeCol = False&lt;/div&gt;&lt;div&gt;Exit Function&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;For I = StartCol To EndCol&lt;/div&gt;&lt;div&gt;GridObj.MergeCol(I) = True&lt;/div&gt;&lt;div&gt;GridObj.TextArray(faIndex(GridObj, CurrentRow, I)) = ColValue&lt;/div&gt;&lt;div&gt;GridObj.ColAlignment(I) = flexAlignCenterCenter&lt;/div&gt;&lt;div&gt;Next I&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;GridObj.MergeRow(CurrentRow) = True&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;MergeCol = True&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''合并行&lt;/div&gt;&lt;div&gt;Public Function MergeRow(GridObj As Object, ByVal StartRow As Long, ByVal EndRow As Long, ByVal&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;RowValue As String, ByVal CurrentCol As Long) As Boolean&lt;/div&gt;&lt;div&gt;If StartRow &amp;gt; EndRow Or StartRow &amp;gt; GridObj.Rows Or CurrentCol &amp;gt; GridObj.Cols Then&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;对不起，行列设置错误！&amp;quot;, vbOKOnly, App.Title&lt;/div&gt;&lt;div&gt;MergeRow = False&lt;/div&gt;&lt;div&gt;Exit Function&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;For I = StartRow To EndRow&lt;/div&gt;&lt;div&gt;GridObj.MergeRow(I) = True&lt;/div&gt;&lt;div&gt;GridObj.TextArray(faIndex(GridObj, I, CurrentCol)) = RowValue&lt;/div&gt;&lt;div&gt;GridObj.ColAlignment(CurrentCol) = flexAlignCenterCenter&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Next I&lt;/div&gt;&lt;div&gt;GridObj.MergeCol(CurrentCol) = True&lt;/div&gt;&lt;div&gt;MergeRow = True&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''转换索引&lt;/div&gt;&lt;div&gt;Public Function faIndex(GridObj As Object, ByVal row As Integer, ByVal col As Integer) As Long&lt;/div&gt;&lt;div&gt;If row &amp;gt; GridObj.Rows Or row &amp;lt; 0 Or col &amp;gt; GridObj.Cols Or col &amp;lt; 0 Then&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;对不起，行列设置错误！&amp;quot;, vbOKOnly, App.Title&lt;/div&gt;&lt;div&gt;faIndex = -1&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;Exit Function&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;faIndex = row * GridObj.Cols + col&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''插入行&lt;/div&gt;&lt;div&gt;Public Function SetItem(GridObj As Object, ByVal row As Integer, ByVal col As Integer, ByVal&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SetValue As String) As Boolean&lt;/div&gt;&lt;div&gt;If row &amp;gt; GridObj.Rows Or row &amp;lt; 0 Or col &amp;gt; GridObj.Cols Or col &amp;lt; 0 Then&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;对不起，行列设置错误！&amp;quot;, vbOKOnly, App.Title&lt;/div&gt;&lt;div&gt;SetItem = False&lt;/div&gt;&lt;div&gt;Exit Function&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;GridObj.TextArray(faIndex(GridObj, row, col)) = SetValue&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;SetItem = True&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;''得到单元格值&lt;/div&gt;&lt;div&gt;Public Function GetItem(GridObj As Object, ByVal row As Integer, ByVal col As Integer) As String&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;If row &amp;gt; GridObj.Rows Or row &amp;lt; 0 Or col &amp;gt; GridObj.Cols Or col &amp;lt; 0 Then&lt;/div&gt;&lt;div&gt;MsgBox &amp;quot;对不起，行列设置错误！&amp;quot;, vbOKOnly, App.Title&lt;/div&gt;&lt;div&gt;GetItem = &amp;quot;&amp;quot;&lt;/div&gt;&lt;div&gt;Exit Function&lt;/div&gt;&lt;div&gt;End If&lt;/div&gt;&lt;div&gt;GetItem = GridObj.TextArray(faIndex(GridObj, row, col))&lt;/div&gt;&lt;div&gt;End Function&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;在msflexgrid控件中每一个cell格的内容是不可以由用户直接编辑的但是我们可以通过一些小技&lt;/div&gt;&lt;div&gt;巧来方便的实现这编辑功能来扩展msflexgrid的应用（在实际应用中这是很常用的功能）。&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;你只需按下面的做即可轻松实现编辑msflexgrid控件数据的功能&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;例在窗体上放一文本框txtvalue，和一msflexgrid控件grid&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;lsquo;文本框控件的keypress事件&lt;/div&gt;&lt;div&gt;private sub txtvalue_keypress(keyascii as integer)&lt;/div&gt;&lt;div&gt;&amp;lsquo;放入一些处理过程，如只需输入数字时的处理&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;dim i&lt;/div&gt;&lt;div&gt;i=1&lt;/div&gt;&lt;div&gt;end sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;private sub txtvalue_change()&lt;/div&gt;&lt;div&gt;grid.text = txtvalue.text&lt;/div&gt;&lt;div&gt;end sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;'在grid的entercell事件中加入下例代码&lt;/div&gt;&lt;div&gt;private sub grid_entercell()&lt;/div&gt;&lt;div&gt;txtvalue.text = grid.text&lt;/div&gt;&lt;div&gt;txtvalue.selstart = 0&lt;/div&gt;&lt;div&gt;txtvalue.sellength = len(txtvalue.text)&lt;/div&gt;&lt;div&gt;end sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;'当用户输入数据时直接调用文本框的keypress事件&lt;/div&gt;&lt;div&gt;private sub grid_keypress(keyascii as integer)&lt;/div&gt;&lt;div&gt;txtvalue_keypress keyascii&lt;/div&gt;&lt;div&gt;end sub&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;ok,这样一个可编辑的msflexgrid控件就完成了，简单吧!!&lt;/div&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;div&gt;原理&lt;/div&gt;&lt;div&gt;当用户点击msflexgrid中的某个cell格要输入数据时,产生entercell事件，在这里我们对文本&lt;/div&gt;&lt;div&gt;框进行初始化，输入当前cell格中的内容，并且选中所有文本。当用户要按下按键进行输入时，就直&lt;/div&gt;&lt;div&gt;接调用txtvalue的事件，由文本框来处理.&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726719/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726719/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>VB</category><pubDate>Wed, 14 Sep 2011 14:01:24 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/553.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/553.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/553.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726719/5856476</fs:itemid></item><item><title>我只想寻求一下支持，让人评评理!</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726720/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=548</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=548&amp;key=c91a0a6a</trackback:ping><description>&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Simsun; line-height: normal; font-size: medium; &quot;&gt;&lt;div style=&quot;background-color: rgb(255, 255, 255); padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;&lt;p&gt;我只想寻求一下支持，让人评评理!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;不错，我就是想让人来评评理!&lt;/p&gt;&lt;p&gt;都说婚姻，家庭中没有对错，不能讲理&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;确实，对于一般家庭生活来说，是，没有谁对谁错，家也不是讲理的地方&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;但我认为这个不是绝对的!&lt;/p&gt;&lt;p&gt;假如一个男人暴力倾向，天天没事打老婆，你也不能说这个男人有错么？你还得教育这个女人要怎么变化各种方式去感化他么？&lt;/p&gt;&lt;p&gt;大家常说什么&amp;ldquo;泼妇&amp;rdquo;&amp;ldquo;负心男&amp;rdquo;，是不是他们都没有错，是不是都是他们对方的错，是不是都应该让他们的对方在自己身上找原因，让他们的对方改变态度，变化爱的方式去感化他们&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;所以，没有什么事是那么绝对的，了解一下情况(不是说空杯么&amp;hellip;&amp;hellip;)，然后再根据情况判断吧&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;当然，我不是想让你听我说两句，就来说Y不好，说Y不对，帮我大骂Y，把Y打倒在地&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;我只是想找人来评评理，如果能够认同我，能帮我劝劝Y，看看能不能改变Y的态度。&lt;/p&gt;&lt;p&gt;因为Y认为她的都是对的，而且我已经找不到可以说动她的人!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;当然，说Y怎么不对，怎么不好，这只是我的想法。&lt;/p&gt;&lt;p&gt;你可以怀疑，你可以指责我也有错，这都没有关系!&lt;/p&gt;&lt;p&gt;但你最其码的应该多了解一下吧，不能一上来就全是我的责任，都让我来改进来弥补&amp;hellip;&amp;hellip;说点虚头巴脑的东西&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;确实婚姻需要经营，需要讲究方式，但那些不都是相互的么&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;一点也不去了解，一味的以自己的理解，以自己的经验去理解和判断事情，你就能肯定天下所有这样的事都在你意料之中，都是你所设想的那样! 你一听就能理解其中的原因&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;我有点反感，可能我说的不太好，反面让他们觉得我过错多一些。&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;也可能他们认为&lt;/span&gt;这是&lt;span class=&quot;Apple-style-span&quot;&gt;劝我们最好的方式了!&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;李云凤说Y不对，并提到海燕给父母盖房的事&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;韩丽马上说&amp;ldquo;云凤越这样讲，陶越心里不平衡&amp;rdquo;，小宋还说&amp;ldquo;你是火上浇油啊&amp;rdquo;&lt;/p&gt;&lt;p&gt;他们俩倒很一致&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;呵呵，你以为我傻到什么份上啊!&amp;nbsp;她不说，我就不知道么，我是聋子，我是瞎子，唉&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;其实每次看到人家家庭和和睦睦的，我特别羡慕，虽然那可能只是表面现象!&lt;/p&gt;&lt;p&gt;原来是怕我不平衡，但这是问题的根源，怎么绕得过去呢。&lt;/p&gt;&lt;p&gt;原来李的几句&amp;ldquo;大实话&amp;rdquo;，是别人一直想避开的&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;每个人的思维果然都是不一样的，确实是这样。&lt;/p&gt;&lt;p&gt;但实在不知道他们为什么要这么想&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;难道我听了这话，我就更恨Y了，更认为Y坏了&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;难道她不说，我就觉得Y好得象朵花一样，觉得Y对我父母也好得不得了了？也会觉得别人也都和Y一样对待父母&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;我很傻，但没有傻到那份上!&lt;/p&gt;&lt;p&gt;其实，与他们所想象的相反，我一点也没有不平衡，火气也没有变大，相反，我感觉很舒服，终于有人说句公道话!&lt;/p&gt;&lt;p&gt;劝别人，最其码的，你得让人认同你，然后才可能取得效果，不是这样么!&lt;/p&gt;&lt;p&gt;你一味的在那按自己的思路想，按自己的经验想啊，怎么发生的矛盾，怎么才能化解&amp;hellip;&amp;hellip;但事实未必如你所想的啊!&lt;/p&gt;&lt;p&gt;有句话：不幸的家庭是各种各样的，但幸福的家庭大同小异&amp;hellip;&amp;hellip;&lt;/p&gt;&lt;p&gt;面对多种多样的情况，不能一概而论啊，不能想得太简单啊&amp;hellip;&amp;hellip;!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;但不管怎么说，人家都是为了我好，感谢一下!&lt;/p&gt;&lt;p&gt;&amp;nbsp;+++&lt;/p&gt;&lt;p&gt;终于找到了那句话，太经典了，原来记在这里： http://www.taoyoyo.net/ttt/post/112.html，应该是庆余年吧里一位网友说的，我记得我记下了呢!&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(153, 51, 102); &quot;&gt;&lt;span style=&quot;font-size: large; &quot;&gt;关心我们的人很多，但真正理解并尊重我们的想法的人没几个。我一直都这么固执的认为：很少有人能真正的为他人着想，我们都在用自己心里的那杆称衡量我们身边的人和事，也都固执的。&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;值得我们每天都背一遍!!!&lt;/p&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726720/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726720/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>随笔</category><pubDate>Thu, 01 Sep 2011 16:56:25 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/548.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/548.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/548.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726720/5856476</fs:itemid></item><item><title>[转]别指望谁能理解你，自己做好自己事情</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726721/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=547</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=547&amp;key=baf64143</trackback:ping><description>&lt;p&gt;&amp;nbsp;&amp;nbsp;　　别指望谁能理解你，自己做好自己事情&lt;/p&gt;&lt;div style=&quot;background-color: rgb(255, 255, 255); padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　(想找一句话，没有找到，找到了这篇东西，保存一下!)&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　世界上的一切矛盾的起源，是因为人与人之间的理解不对称，对某一件事情，大家各自的观察角度和看法不一样，所以导致了各类矛盾的出现。&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　在工作中，我们几乎面临着各式各样的理解不对称，例如身边的朋友，同事，老板，客户，乃至家人，就是不能很好的理解你，自然也就不太可能配合你，工作是如此，生活也是如此。想找到一个理解自己的人实在是太难，往往穷其一身，也找不到一个，所以，许多人甚是感叹，人生得一知己，死已足哎，把这事提到生死的高度，提升到这个高度，也说明了这个事难度之大。巴金先生也说：&amp;ldquo;理解万岁&amp;rdquo;，这反过来也说明了一个问题，人与人之间的互相理解，几乎是件不可能的事情，为什么人与人之间的理解就这么难？&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　现在科技技术已经可以把人送到数万公里之外的月亮上去挖石头，但却无法搞清楚距离你只有十公分的那个人心里在想什么，无法准确获知对方的状态，了解是理解的前提，即便是对方想了解你，也会因为没有办法获知你的真实状况而无门可入，再者，每个人心中，有许多目标是不可告人的，个人真正的目标和理想往往是高度私人化的，有些是黑暗的，无法公布于众的，也就是没法说出来的，最多也只能表达一部分而已，表达出来的信息不完整不真实，别人对你的真实状况也就不可能进行有效的了解，若谈理解，最多也就是在某一两个单点上的理解，不可能全部理解。在这个问题上要学会知足，别人能理解你一两个单点已经不错了。&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　并且，每一个人都是高度独立的个体，其背景，经历，价值观，看事的角度，思维习惯，目标取向等等都是千差万别的，对某件事，某个人的理解都是从自己的角度出发的，世界上没有两片相同的叶子，更何况这么复杂的人呢。父母与自己应该是最贴心的，但都很难互相理解，更何况其他关系单薄的人呢？&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　再有，这世界上唯一不变的道理的就是&amp;ldquo;变&amp;rdquo;，社会环境在变，人在变，自己的价值观和思维习惯在变，个人的目标取向也在变，这些与人有关连的内外部因素都在变，这也导致人与人之间的理解更加困难，&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　我们潜意识里希望别人对我们能有个全方面的理解，甚至是渴求别人的理解，却又不能告诉别人一个真实的自己，这本身就是有矛盾的，加之一切都在变，理解的困难又是增加了许多。&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　不过，换个角度想一下，我们为什么需要别人对自己的理解呢？表面上来看，这是试图获得别人对自己的认可，自己对自己的价值不确定，自己的价值非得要建立在被别人认可的基础上，自己的认可不算数，或者说，自己心中的自我是软弱的，无法承托自己的希望和未来，反而要把这些东西寄托在别人的身上。换而言之，这就是自卑的表现&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　许多人抱怨自己在公司里不得志，眼见许多不如自己的人却获得飞快的发展，自己空有一身才学却无人能识，由于事业发展不利，家人关系也会受些影响，内忧外患，于是就感叹这世上咋就没有人能够理解自己的呢？苦闷也好，郁闷也好，因此而形成，其实，所谓的不得志，就是被动的等待别人来发现自己，承认自己的价值所在，并给予自己机会。事实上，在如今这个竞争日趋激烈的社会里，这种被动等待的思想早已经落伍了，现在要的是主动的，多渠道的，更大范围的来展现自己，而不是坐在那里干等着别人来主动发现你。换而言之，这些所谓的郁闷苦闷，以及觉得别人理解不了自己，这些状态都是自找的。渴望和等待别人来理解自己，一是压根犯不着，二是这等于自己给自己下达了一个不可能的任务&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　别指望谁能理解你，自己做好自己事情吧，成功不是别人给的，而是自己一步步做出来的，在现实中，每个人都是在为自己负责，那有那么多精力来理解你，再说了，有那个必要吗？你又不是上帝，并且，在事实中，许多成功的人往往是孤独的，理解他们的人很少，或是压根就没有，成功者并不在别人对自己的理解太当回事，而大多是属于那种自己理解自己，自己认可自己，也许就是因为这点，才能促进他们取得成功的原因所在。套用句时髦的话来说：走自己的路，让别人打车去吧。&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　(作者：潘文富，来源：http://www.sinoec.net/Article/reason/hr/Article_50619.html)&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　+++&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　我确实自卑，想得到别人的认可，看来没有必要&amp;hellip;&amp;hellip;婆婆妈妈的解释来解释去，何必呢，只能让别人增加对自己的看法和成见。话一说出来的都会变样!&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　以后不解释~~看看黄药师，受了冤枉也不解释，人家不屑，呵呵，向老黄学习!&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;　　那句话没有找到，是贴吧里一个网友说的：没有誰是真正的为对方着想，都只是按自己的想法&amp;hellip;&amp;hellip;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;PS：&lt;/div&gt;&lt;div&gt;&lt;div&gt;　　终于找到了那句话，太经典了，原来在这里 http://www.taoyoyo.net/ttt/post/112.html，应该是庆余年吧里一位网友说的，我记得我记下了呢!&lt;/div&gt;&lt;blockquote&gt;&lt;div&gt;&lt;span style=&quot;color: rgb(153, 51, 102); &quot;&gt;&lt;span style=&quot;font-size: large; &quot;&gt;　　关心我们的人很多，但真正理解并尊重我们的想法的人没几个。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;color: rgb(153, 51, 102); &quot;&gt;&lt;span style=&quot;font-size: large; &quot;&gt;　　我一直都这么固执的认为：很少有人能真正的为他人着想，我们都在用自己心理的那杆称衡量我们身边的人和事，也都固执的。&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;　　值得我们每天都背一遍!!!&lt;/div&gt;&lt;/div&gt;&lt;div style=&quot;font-family: Arial, Verdana, sans-serif; font-size: 12px; line-height: 160%; &quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726721/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726721/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>评论</category><pubDate>Thu, 01 Sep 2011 12:12:19 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/547.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/547.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/547.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726721/5856476</fs:itemid></item><item><title>假箱包利润高，真箱包利润也高……</title><link>http://item.feedsky.com/~feedsky/tttblog/~7747253/577726722/5856476/1/item.html</link><wfw:comment>http://www.taoyoyo.net/ttt/</wfw:comment><wfw:commentRss>http://www.taoyoyo.net/ttt/feed.asp?cmt=546</wfw:commentRss><trackback:ping>http://www.taoyoyo.net/ttt/cmd.asp?act=tb&amp;id=546&amp;key=b1920424</trackback:ping><description>&lt;p&gt;回家路上听广播（中国之声）说，好像是在广州，破获一个制造假冒箱包的集团。&lt;/p&gt;&lt;p&gt;他们造的包包括什么ＬＶ的，成本不过百十元，销往日韩，可以卖到三到五千元，主持人说真是百倍的利润啊。&lt;/p&gt;&lt;p&gt;接着又说，经过箱包专家鉴定，他们造的假箱包品质可以达到Ａ上水平，主持人说：这真可谓以假乱真了。&lt;/p&gt;&lt;p&gt;接着主持人告诫听众，说一定要擦亮眼睛，不要一掷千金买假货了。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;但我听了这个新闻，却想到另一方面：&lt;/p&gt;&lt;p&gt;假箱包之所以卖这么贵，当然是跟着真箱包价格走的，这假箱包成本不过百十元，就可以卖到几千元，这造假箱包的利润是挺大的。&lt;/p&gt;&lt;p&gt;但这假箱包的品质与真货不相上下，那真箱包的成本可以认为与假箱包也不相上下，可想而知，这些名牌箱包的利润有多大。&lt;/p&gt;&lt;p&gt;当然这里面有品牌的价值，但那是不是也差得太多了！&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;我是个实用主义者，对那些一掷千金买这些东西，真是不理解！&lt;/p&gt;&lt;p&gt;确实够厉害的，用百十元成本，造出几千元的包，而且品质还有保证，真是够厉害的。&lt;/p&gt;&lt;p&gt;而且他们还可以卖到日韩，赚取外汇，真要为他们叫好了！&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/577726722/tttblog/feedsky/s.gif?r=http://item.feedsky.com/~feedsky/tttblog/~7747253/577726722/5856476/1/item.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;</description><category>随笔</category><pubDate>Wed, 03 Aug 2011 19:17:01 +0800</pubDate><author>a@b.com (taoether)</author><comments>http://www.taoyoyo.net/ttt/post/546.html#comment</comments><guid isPermaLink="false">http://www.taoyoyo.net/ttt/post/546.html</guid><dc:creator>a@b.com (taoether)</dc:creator><fs:srclink>http://www.taoyoyo.net/ttt/post/546.html</fs:srclink><fs:srcfeed>http://www.yoyotao.net/ttt/feed.asp</fs:srcfeed><fs:itemid>feedsky/tttblog/~7747253/577726722/5856476</fs:itemid></item></channel></rss>
