adska
+From 4bff688a88727908f0ddb2469609e87d1583d538 Mon Sep 17 00:00:00 2001 From: wuchangqian <30889515@qq.com> Date: Wed, 6 Sep 2017 18:10:41 +0800 Subject: [PATCH] Site updated at 2017-09-06 10:10:41 UTC --- about-me/index.html | 10 +- atom.xml | 115 +------ .../01/17/understand-mysql-charset/index.html | 8 +- blog/2012/03/02/note-of-yum/index.html | 8 +- .../23/command-line-skill-of-linux/index.html | 8 +- blog/2012/05/30/intr-rsa/index.html | 8 +- .../2012/10/19/it-gangwei-shuoming/index.html | 8 +- blog/2012/12/06/use-of-stack/index.html | 8 +- .../08/30/jquery-extend-method/index.html | 8 +- blog/2014/01/31/consistent-hashing/index.html | 8 +- .../index.html | 8 +- .../31/apache-http-request-process/index.html | 8 +- blog/2014/08/31/html-doctype/index.html | 8 +- .../08/31/linux-useful-command/index.html | 8 +- blog/2014/08/31/php-break-keywork/index.html | 8 +- blog/2014/09/01/sed-man-page/index.html | 10 +- blog/2014/10/19/css-clearfix/index.html | 8 +- .../19/mysql-shell-prompt-metachar/index.html | 8 +- blog/2014/10/19/wangzhan-paizhao/index.html | 8 +- blog/2015/01/06/htop/index.html | 8 +- .../07/windows-xia-ffmpegshi-yong/index.html | 8 +- blog/2017/08/10/shell-history/index.html | 10 +- blog/2017/09/06/test/index.html | 239 ++++++++++++++ blog/archives/index.html | 23 +- .../%E5%A4%9A%E5%AA%92%E4%BD%93/atom.xml | 2 +- .../%E5%A4%9A%E5%AA%92%E4%BD%93/index.html | 8 +- blog/categories/%E7%9B%B4%E6%92%AD/atom.xml | 2 +- blog/categories/%E7%9B%B4%E6%92%AD/index.html | 8 +- blog/categories/algorithm/atom.xml | 2 +- blog/categories/algorithm/index.html | 8 +- blog/categories/apache/atom.xml | 2 +- blog/categories/apache/index.html | 8 +- blog/categories/command/atom.xml | 2 +- blog/categories/command/index.html | 8 +- blog/categories/computer/atom.xml | 2 +- blog/categories/computer/index.html | 8 +- blog/categories/css/atom.xml | 2 +- blog/categories/css/index.html | 8 +- blog/categories/doctype/atom.xml | 2 +- blog/categories/doctype/index.html | 8 +- blog/categories/ffmpeg/atom.xml | 2 +- blog/categories/ffmpeg/index.html | 8 +- blog/categories/function/atom.xml | 2 +- blog/categories/function/index.html | 8 +- blog/categories/history/atom.xml | 2 +- blog/categories/history/index.html | 8 +- blog/categories/html/atom.xml | 2 +- blog/categories/html/index.html | 8 +- blog/categories/http/atom.xml | 2 +- blog/categories/http/index.html | 8 +- blog/categories/it/atom.xml | 2 +- blog/categories/it/index.html | 8 +- blog/categories/javascript/atom.xml | 2 +- blog/categories/javascript/index.html | 8 +- blog/categories/jekyll/atom.xml | 2 +- blog/categories/jekyll/index.html | 8 +- blog/categories/jquery/atom.xml | 2 +- blog/categories/jquery/index.html | 8 +- blog/categories/linux/atom.xml | 4 +- blog/categories/linux/index.html | 8 +- blog/categories/mysql/atom.xml | 2 +- blog/categories/mysql/index.html | 8 +- blog/categories/octopress/atom.xml | 2 +- blog/categories/octopress/index.html | 8 +- blog/categories/php/atom.xml | 2 +- blog/categories/php/index.html | 8 +- blog/categories/rsa/atom.xml | 2 +- blog/categories/rsa/index.html | 8 +- blog/categories/sed/atom.xml | 4 +- blog/categories/sed/index.html | 8 +- blog/categories/shell/atom.xml | 4 +- blog/categories/shell/index.html | 8 +- blog/categories/web/atom.xml | 2 +- blog/categories/web/index.html | 8 +- index.html | 91 ++--- posts/2/index.html | 181 +++------- posts/3/index.html | 310 ++++++++++++++++++ sitemap.xml | 4 + 78 files changed, 885 insertions(+), 508 deletions(-) create mode 100644 blog/2017/09/06/test/index.html create mode 100644 posts/3/index.html diff --git a/about-me/index.html b/about-me/index.html index f6e9f93..bcf11ed 100644 --- a/about-me/index.html +++ b/about-me/index.html @@ -9,7 +9,7 @@
BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR @@ -2276,108 +2285,6 @@ rpm -ql yum-cron OR # yum update httpd -y –downloadonly –downloaddir=/opt ##下载到指定目录 # yum install perl-MailTools –downloadonly –downloaddir=/opt -y ##如果软件已经下载过了,必须使用这个来下载
-]]> -• 系统变量: - – character_set_server:默认的内部操作字符集 - – character_set_client:客户端来源数据使用的字符集 - – character_set_connection:连接层字符集 - – character_set_results:查询结果字符集 - – character_set_database:当前选中数据库的默认字符集 - – character_set_system:系统元数据(字段名等)字符集 - – 还有以collation开头的同上面对应的变量,用来描述字符序。 -• 用introducer指定文本字符串的字符集: - – 格式为:[charset] ’string’ [COLLATE collation] - – 例如: - • SELECT latin1 ’string’; - • SELECT utf8 ‘你好’ COLLATE utf8_general_ci; - – 由introducer修饰的文本字符串在请求过程中不经过多余的转码,直接转换为内部字符集处理。
- -1. MySQL Server收到请求时将请求数据从character_set_client转换为character_set_connection;
-2. 进行内部操作前将请求数据从character_set_connection转换为内部操作字符集,其确定方法如下:
- • 使用每个数据字段的CHARACTER SET设定值;
- • 若上述值不存在,则使用对应数据表的DEFAULT CHARACTER SET设定值(MySQL扩展,非SQL标准);
- • 若上述值不存在,则使用对应数据库的DEFAULT CHARACTER SET设定值;
- • 若上述值不存在,则使用character_set_server设定值。
-3. 将操作结果从内部操作字符集转换为character_set_results。
-
-
-BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR @@ -382,6 +382,10 @@
adska
+BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR diff --git a/blog/categories/linux/index.html b/blog/categories/linux/index.html index fa6d81a..3f12c33 100644 --- a/blog/categories/linux/index.html +++ b/blog/categories/linux/index.html @@ -189,6 +189,10 @@
BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR diff --git a/blog/categories/sed/index.html b/blog/categories/sed/index.html index 404e975..9596e53 100644 --- a/blog/categories/sed/index.html +++ b/blog/categories/sed/index.html @@ -96,6 +96,10 @@
BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR diff --git a/blog/categories/shell/index.html b/blog/categories/shell/index.html index ccf70d2..0df2d49 100644 --- a/blog/categories/shell/index.html +++ b/blog/categories/shell/index.html @@ -158,6 +158,10 @@
adska
+BUGS - E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your + E-mail bug reports to bug-sed@gnu.org. Also, please include the output of “sed –version” in the body of your report if at all possible.
AUTHOR @@ -1175,50 +1200,6 @@
Apache请求处理循环的11个阶段都做了哪些事情呢?
- -Apache请求处理循环的11个阶段都做了哪些事情呢?
+ +• 系统变量: - – character_set_server:默认的内部操作字符集 - – character_set_client:客户端来源数据使用的字符集 - – character_set_connection:连接层字符集 - – character_set_results:查询结果字符集 - – character_set_database:当前选中数据库的默认字符集 - – character_set_system:系统元数据(字段名等)字符集 - – 还有以collation开头的同上面对应的变量,用来描述字符序。 -• 用introducer指定文本字符串的字符集: - – 格式为:[charset] ’string’ [COLLATE collation] - – 例如: - • SELECT latin1 ’string’; - • SELECT utf8 ‘你好’ COLLATE utf8_general_ci; - – 由introducer修饰的文本字符串在请求过程中不经过多余的转码,直接转换为内部字符集处理。
- -1. MySQL Server收到请求时将请求数据从character_set_client转换为character_set_connection;
-2. 进行内部操作前将请求数据从character_set_connection转换为内部操作字符集,其确定方法如下:
- • 使用每个数据字段的CHARACTER SET设定值;
- • 若上述值不存在,则使用对应数据表的DEFAULT CHARACTER SET设定值(MySQL扩展,非SQL标准);
- • 若上述值不存在,则使用对应数据库的DEFAULT CHARACTER SET设定值;
- • 若上述值不存在,则使用character_set_server设定值。
-3. 将操作结果从内部操作字符集转换为character_set_results。
-
-
-• 系统变量: + – character_set_server:默认的内部操作字符集 + – character_set_client:客户端来源数据使用的字符集 + – character_set_connection:连接层字符集 + – character_set_results:查询结果字符集 + – character_set_database:当前选中数据库的默认字符集 + – character_set_system:系统元数据(字段名等)字符集 + – 还有以collation开头的同上面对应的变量,用来描述字符序。 +• 用introducer指定文本字符串的字符集: + – 格式为:[charset] ’string’ [COLLATE collation] + – 例如: + • SELECT latin1 ’string’; + • SELECT utf8 ‘你好’ COLLATE utf8_general_ci; + – 由introducer修饰的文本字符串在请求过程中不经过多余的转码,直接转换为内部字符集处理。
+ +1. MySQL Server收到请求时将请求数据从character_set_client转换为character_set_connection;
+2. 进行内部操作前将请求数据从character_set_connection转换为内部操作字符集,其确定方法如下:
+ • 使用每个数据字段的CHARACTER SET设定值;
+ • 若上述值不存在,则使用对应数据表的DEFAULT CHARACTER SET设定值(MySQL扩展,非SQL标准);
+ • 若上述值不存在,则使用对应数据库的DEFAULT CHARACTER SET设定值;
+ • 若上述值不存在,则使用character_set_server设定值。
+3. 将操作结果从内部操作字符集转换为character_set_results。
+
+
+