亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? manual_news.html

?? MySQL參考手冊中文版
?? HTML
?? 第 1 頁 / 共 5 頁
字號:
</pre>
    <p>This allows some ODBC programs (Delphi, Access) to retrieve the newly inserted row to 
    fetch the <code>AUTO_INCREMENT</code> id. </p>
  </li>
  <li><code>DROP TABLE</code> now waits for all users to free a table before deleting it. </li>
  <li>Fixed small memory leak in the new connect protocol. </li>
  <li>New functions <code>BIN()</code>, <code>OCT()</code>, <code>HEX()</code> and <code>CONV()</code> 
    for converting between different number bases. </li>
  <li>Added function <code>SUBSTRING()</code> with 2 arguments. </li>
  <li>If you created a table with a record length smaller than 5, you couldn't delete rows 
    from the table. </li>
  <li>Added optimization to remove const reference tables from <code>ORDER BY</code> and <code>GROUP 
    BY</code>. </li>
  <li><code>mysqld</code> now automatically disables system locking on Linux and Win32, and 
    for systems that use MIT-pthreads. You can force the use of locking with the <code>--enable-locking</code> 
    option. </li>
  <li>Added <code>--console</code> option to <code>mysqld</code>, to force a console window 
    (for error messages) when using Win32. </li>
  <li>Fixed table locks for Win32. </li>
  <li>Allow <samp>`$'</samp> in identifiers. </li>
  <li>Changed name of user-specific configuration file from <tt>`my.cnf'</tt> to <tt>`.my.cnf'</tt> 
    (Unix only). </li>
  <li>Added <code>DATE_ADD()</code> and <code>DATE_SUB()</code> functions. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.3" name="News-3.22.3">D.2.26 Changes in release 
3.22.3</a></h3>

<ul>
  <li>Fixed a lock problem (bug in <strong>MySQL</strong> 3.22.1) when closing temporary 
    tables. </li>
  <li>Added missing <code>mysql_ping()</code> to the client library. </li>
  <li>Added <code>--compress</code> option to all <strong>MySQL</strong> clients. </li>
  <li>Changed <code>byte</code> to <code>char</code> in <tt>`mysql.h'</tt> and <tt>`mysql_com.h'</tt>. 
  </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.2" name="News-3.22.2">D.2.27 Changes in release 
3.22.2</a></h3>

<ul>
  <li>Searching on multiple constant keys that matched more than 30% of the rows didn't always 
    use the best possible key. </li>
  <li>New functions <code>&lt;&lt;</code>, <code>&gt;&gt;</code>, <code>RPAD()</code> and <code>LPAD()</code>. 
  </li>
  <li>You can now save default options (like passwords) in a configuration file (<tt>`my.cnf'</tt>). 
  </li>
  <li>Lots of small changes to get <code>ORDER BY</code> to work when no records are found 
    when using fields that are not in <code>GROUP BY</code> (<strong>MySQL</strong> 
    extension). </li>
  <li>Added <code>--chroot</code> option to <code>mysqld</code>, to start <code>mysqld</code> 
    in a chroot environment (by Nikki Chumakov <a href="mailto:nikkic@cityline.ru">nikkic@cityline.ru</a>). 
  </li>
  <li>Trailing spaces are now ignored when comparing case-sensitive strings; this should fix 
    some problems with ODBC and flag 512! </li>
  <li>Fixed a core-dump bug in the range optimizer. </li>
  <li>Added <code>--one-thread</code> option to <code>mysqld</code>, for debugging with 
    LinuxThreads (or <code>glibc</code>). (This replaces the <code>-T32</code> flag) </li>
  <li>Added <code>DROP TABLE IF EXISTS</code> to prevent an error from occurring if the table 
    doesn't exist. </li>
  <li><code>IF</code> and <code>EXISTS</code> are now reserved words (they would have to be 
    sooner or later). </li>
  <li>Added lots of new options to <code>mysqldump</code>. </li>
  <li>Server error messages are now in <tt>`mysqld_error.h'</tt>. </li>
  <li>The server/client protocol now supports compression. </li>
  <li>All bug fixes from <strong>MySQL</strong> 3.21.32. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.1" name="News-3.22.1">D.2.28 Changes in release 
3.22.1</a></h3>

<ul>
  <li>Added new C API function <code>mysql_ping()</code>. </li>
  <li>Added new API functions <code>mysql_init()</code> and <code>mysql_options()</code>. You 
    now MUST call <code>mysql_init()</code> before you call <code>mysql_real_connect()</code>. 
    You don't have to call <code>mysql_init()</code> if you only use <code>mysql_connect()</code>. 
  </li>
  <li>Added <code>mysql_options(...,MYSQL_OPT_CONNECT_TIMEOUT,...)</code> so you can set a 
    timeout for connecting to a server. </li>
  <li>Added <code>--timeout</code> option to <code>mysqladmin</code>, as a test of <code>mysql_options()</code>. 
  </li>
  <li>Added <code>AFTER column</code> and <code>FIRST</code> options to <code>ALTER TABLE ... 
    ADD columns</code>. This makes it possible to add a new column at some specific location 
    within a row in an existing table. </li>
  <li><code>WEEK()</code> now takes an optional argument to allow handling of weeks when the 
    week starts on Monday (some European countries). By default, <code>WEEK()</code> assumes 
    the week starts on Sunday. </li>
  <li><code>TIME</code> columns weren't stored properly (bug in <strong>MySQL</strong> 
    3.22.0). </li>
  <li><code>UPDATE</code> now returns information about how many rows were matched and 
    updated, and how many ``warnings'' occurred when doing the update. </li>
  <li>Fixed incorrect result from <code>FORMAT(-100,2)</code>. </li>
  <li><code>ENUM</code> and <code>SET</code> columns were compared in binary (case-sensitive) 
    fashion; changed to be case insensitive. </li>
</ul>

<h3><a href="manual_toc.html#News-3.22.0" name="News-3.22.0">D.2.29 Changes in release 
3.22.0</a></h3>

<ul>
  <li>New (backward compatible) connect protocol that allows you to specify the database to 
    use when connecting, to get much faster connections to a specific database. The <code>mysql_real_connect()</code> 
    call is changed to: <pre>mysql_real_connect(MYSQL *mysql, const char *host, const char *user,
                   const char *passwd, const char *db, uint port,
                   const char *unix_socket, uint client_flag)
</pre>
  </li>
  <li>Each connection is handled by its own thread, rather than by the master <code>accept()</code> 
    thread. This fixes permanently the telnet bug that was a topic on the mail list some time 
    ago. </li>
  <li>All TCP/IP connections are now checked with backward resolution of the hostname to get 
    better security. <code>mysqld</code> now has a local hostname resolver cache so 
    connections should actually be faster than before, even with this feature. </li>
  <li>A site automatically will be blocked from future connections if someone repeatedly 
    connects with an ``improper header'' (like when one uses telnet). </li>
  <li>You can now refer to tables in different databases with references of the form <code>tbl_name@db_name</code> 
    or <code>db_name.tbl_name</code>. This makes it possible to give a user read access to 
    some tables and write access to others simply by keeping them in different databases! </li>
  <li>Added <code>--user</code> option to <code>mysqld</code>, to allow it to run as another 
    Unix user (if it is started as the Unix <code>root</code> user). </li>
  <li>Added caching of users and access rights (for faster access rights checking) </li>
  <li>Normal users (not anonymous ones) can change their password with <code>mysqladmin 
    password 'new_password'</code>. This uses encrypted passwords that are not logged in the 
    normal <strong>MySQL</strong> log! </li>
  <li>All important string functions are now coded in assembler for x86 Linux machines. This 
    gives a speedup of 10% in many cases. </li>
  <li>For tables that have many columns, the column names are now hashed for much faster 
    column name lookup (this will speed up some benchmark tests a lot!) </li>
  <li>Some benchmarks are changed to get better individual timing. (Some loops were so short 
    that a specific test took &lt; 2 seconds. The loops have been changed to take about 20 
    seconds to make it easier to compare different databases. A test that took 1-2 seconds 
    before now takes 11-24 seconds, which is much better) </li>
  <li>Re-arranged <code>SELECT</code> code to handle some very specific queries involving 
    group functions (like <code>COUNT(*)</code>) without a <code>GROUP BY</code> but with <code>HAVING</code>. 
    The following now works: <pre>mysql&gt; SELECT count(*) as C FROM table HAVING C &gt; 1;
</pre>
  </li>
  <li>Changed the protocol for field functions to be faster and avoid some calls to <code>malloc()</code>. 
  </li>
  <li>Added <code>-T32</code> option to <code>mysqld</code>, for running all queries under the 
    main thread. This makes it possible to debug <code>mysqld</code> under Linux with <code>gdb</code>! 
  </li>
  <li>Added optimization of <code>not_null_column IS NULL</code> (needed for some Access 
    queries). </li>
  <li>Allow <code>STRAIGHT_JOIN</code> to be used between two tables to force the optimizer to 
    join them in a specific order. </li>
  <li>String functions now return <code>VARCHAR</code> rather than <code>CHAR</code> and the 
    column type is now <code>VARCHAR</code> for fields saved as <code>VARCHAR</code>. This 
    should make the <strong>MyODBC</strong> driver better, but may break some old <strong>MySQL</strong> 
    clients that don't handle <code>FIELD_TYPE_VARCHAR</code> the same way as <code>FIELD_TYPE_CHAR</code>. 
  </li>
  <li><code>CREATE INDEX</code> and <code>DROP INDEX</code> are now implemented through <code>ALTER 
    TABLE</code>. <code>CREATE TABLE</code> is still the recommended (fast) way to create 
    indexes. </li>
  <li>Added <code>--set-variable</code> option <code>wait_timeout</code> to <code>mysqld</code>. 
  </li>
  <li>Added time column to <code>mysqladmin processlist</code> to show how long a query has 
    taken or how long a thread has slept. </li>
  <li>Added lots of new variables to <code>show variables</code> and some new to <code>show 
    status</code>. </li>
  <li>Added new type <code>YEAR</code>. <code>YEAR</code> is stored in 1 byte with allowable 
    values of 0, and 1901 to 2155. </li>
  <li>Added new <code>DATE</code> type that is stored in 3 bytes rather than 4 bytes. All new 
    tables are created with the new date type if you don't use the <code>--old-protocol</code> 
    option to <code>mysqld</code>. </li>
  <li>Fixed bug in record caches; for some queries, you could get <code>Error from table 
    handler: #</code> on some operating systems. </li>
  <li>Added <code>--enable-assembler</code> option to <code>configure</code>, for x86 machines 
    (tested on Linux + <code>gcc</code>). This will enable assembler functions for the most 
    important string functions for more speed! </li>
</ul>

<h2><a href="manual_toc.html#News-3.21.x" name="News-3.21.x">D.3 Changes in release 3.21.x</a></h2>

<h3><a href="manual_toc.html#News-3.21.33" name="News-3.21.33">D.3.1 Changes in release 
3.21.33</a></h3>

<ul>
  <li>Fixed problem when sending <code>SIGHUP</code> to <code>mysqld</code>; <code>mysqld</code> 
    core dumped when starting from boot on some systems. </li>
  <li>Fixed problem with losing a little memory for some connections. </li>
  <li><code>DELETE FROM tbl_name</code> without a <code>WHERE</code> condition is now done the 
    long way when you use <code>LOCK TABLES</code> or if the table is in use, to avoid race 
    conditions. </li>
  <li><code>INSERT INTO TABLE (timestamp_column) VALUES (NULL);</code> didn't set timestamp. </li>
</ul>

<h3><a href="manual_toc.html#News-3.21.32" name="News-3.21.32">D.3.2 Changes in release 
3.21.32</a></h3>

<ul>
  <li>Fixed some possible race conditions when doing many reopen/close on the same tables 
    under heavy load! This can happen if you execute <code>mysqladmin refresh</code> often. 
    This could in some very rare cases corrupt the header of the index file and cause error 
    126 or 138. </li>
  <li>Fixed fatal bug in <code>refresh()</code> when running with the <code>--skip-locking</code> 
    option. There was a ``very small'' time gap after a <code>mysqladmin refresh</code> when a 
    table could be corrupted if one thread updated a table while another thread did <code>mysqladmin 
    refresh</code> and another thread started a new update ont the same table before the first 
    thread had finished. A refresh (or <code>--flush-tables</code>) will now not return until 
    all used tables are closed! </li>
  <li><code>SELECT DISTINCT</code> with a <code>WHERE</code> clause that didn't match any rows 
    returned a row in some contexts (bug only in 3.21.31). </li>
  <li><code>GROUP BY</code> + <code>ORDER BY</code> returned one empty row when no rows where 
    found. </li>
  <li>Fixed a bug in the range optimizer that wrote <code>Use_count: Wrong count for ...</code> 
    in the error log file. </li>
</ul>

<h3><a href="manual_toc.html#News-3.21.31" name="News-3.21.31">D.3.3 Changes in release 
3.21.31</a></h3>

<ul>
  <li>Fixed a sign extension problem for the <code>TINYINT</code> type on Irix. </li>
  <li>Fixed problem with <code>LEFT(&quot;constant_string&quot;,function)</code>. </li>
  <li>Fixed prob

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃av噜噜一区| 一区精品在线播放| 老司机精品视频导航| 日韩欧美另类在线| 国产精品一区二区三区99| 久久日韩粉嫩一区二区三区| 成人激情文学综合网| 亚洲人xxxx| 日韩一级精品视频在线观看| 国产一区二区在线视频| 国产三区在线成人av| 91在线视频播放| 亚洲高清不卡在线| 欧美精品一区二区三区视频 | 中文字幕在线免费不卡| 成人h版在线观看| 亚洲影院免费观看| 精品久久一区二区| 色综合视频一区二区三区高清| 日本高清视频一区二区| 日韩国产在线一| 26uuu精品一区二区在线观看| 亚洲成av人在线观看| 久久综合九色综合欧美亚洲| 成人成人成人在线视频| 亚洲成人免费视频| 久久精品亚洲精品国产欧美| 欧美自拍偷拍一区| 国产乱国产乱300精品| 一区二区欧美国产| 欧美精品一区二区在线播放| 日本精品一级二级| 国产一区二区三区日韩| 亚洲在线免费播放| 欧美国产日本视频| 日韩一区二区影院| 91免费看片在线观看| 久久精品国产亚洲高清剧情介绍 | 欧美在线免费视屏| 国产精品羞羞答答xxdd| 亚洲成人资源网| 中文字幕+乱码+中文字幕一区| 国产精品一二三四区| 亚洲综合在线五月| 国产日韩亚洲欧美综合| 欧美精品乱码久久久久久按摩 | 丝袜亚洲另类欧美综合| 一区在线播放视频| 精品国产百合女同互慰| 91麻豆精品国产91久久久资源速度| 亚洲高清三级视频| 亚洲三级免费电影| 国产亚洲欧美一级| 欧美成人欧美edvon| 在线播放中文字幕一区| 在线亚洲一区二区| 成人免费毛片高清视频| 久热成人在线视频| 天天综合网天天综合色| 伊人色综合久久天天人手人婷| 91福利国产成人精品照片| 成人av网址在线| 老司机午夜精品| 蜜臀va亚洲va欧美va天堂 | 1024国产精品| 国产丝袜在线精品| 久久久精品日韩欧美| 欧美xxxxx牲另类人与| 日韩欧美综合一区| 欧美电影在线免费观看| 欧美少妇bbb| 欧美性一区二区| 色av一区二区| 欧美亚洲动漫另类| 欧美性xxxxx极品少妇| 欧美日韩精品电影| 色94色欧美sute亚洲线路一久| 日本麻豆一区二区三区视频| 五月婷婷欧美视频| 日韩国产欧美在线播放| 日本不卡一区二区三区高清视频| 久久久久久日产精品| 精品不卡在线视频| 久久久久久久久岛国免费| 久久日一线二线三线suv| 久久品道一品道久久精品| 中文字幕精品一区| 综合激情成人伊人| 亚洲麻豆国产自偷在线| 亚洲欧美日韩综合aⅴ视频| 亚洲人成网站影音先锋播放| 亚洲一区在线电影| 日韩国产在线一| 国产一区视频网站| 99久久久精品免费观看国产蜜| 蜜乳av一区二区| 紧缚奴在线一区二区三区| 国产一区中文字幕| 91小宝寻花一区二区三区| 欧洲日韩一区二区三区| 制服丝袜亚洲网站| 久久久久亚洲综合| 亚洲日本在线看| 首页国产丝袜综合| 国产精品18久久久久久vr| 不卡的看片网站| 欧美在线观看禁18| 欧美精品一区二区不卡| 中文字幕一区二区三区在线观看| 日韩一二在线观看| 91首页免费视频| 欧美日韩视频在线观看一区二区三区| 99久久婷婷国产综合精品| 欧美色综合网站| 久久综合九色综合欧美98| 亚洲欧洲另类国产综合| 亚洲v中文字幕| 国产在线一区观看| 欧美日韩综合不卡| 国产亚洲欧美中文| 五月激情综合婷婷| 国产99久久久久久免费看农村| 九九视频精品免费| 在线观看视频一区| 国产午夜精品一区二区| 亚洲成精国产精品女| 国产剧情一区在线| 538在线一区二区精品国产| 欧美激情综合在线| 久久成人18免费观看| 在线视频欧美精品| 国产精品日产欧美久久久久| 青娱乐精品视频在线| 91美女福利视频| 久久久国产一区二区三区四区小说| 久久这里只有精品6| 尤物在线观看一区| 成人性生交大片免费看中文| 日韩欧美国产小视频| 亚洲国产精品久久久久秋霞影院| 香蕉乱码成人久久天堂爱免费| 亚洲二区在线观看| 99re6这里只有精品视频在线观看| 成人免费看黄yyy456| 欧美大片顶级少妇| 亚洲综合免费观看高清在线观看| 夜夜嗨av一区二区三区网页| 国产成人免费xxxxxxxx| 在线电影欧美成精品| 一区二区三区日本| 色综合久久精品| 国产精品久久久久久福利一牛影视| 亚洲欧美激情小说另类| 国产成人在线网站| 久久综合久久综合九色| 精品在线观看视频| 精品少妇一区二区| 免费观看成人鲁鲁鲁鲁鲁视频| 激情丁香综合五月| 日韩一区二区高清| 天天综合色天天综合色h| 欧美三级资源在线| 亚洲综合在线电影| 欧洲另类一二三四区| 一区二区三区在线影院| 色香蕉久久蜜桃| 最新成人av在线| 99久久精品免费观看| 国产精品久久久久永久免费观看 | 成人影视亚洲图片在线| 加勒比av一区二区| 日本一区二区三区四区在线视频| 久久精品视频免费| 国产电影一区在线| 日本成人在线网站| 国产精品久久久久婷婷二区次| 久久久电影一区二区三区| 久久爱www久久做| 精品黑人一区二区三区久久| 极品少妇xxxx精品少妇| 精品国产伦理网| 国内精品国产成人国产三级粉色| 91视频www| 亚洲国产日韩a在线播放性色| 国产精品18久久久久久久网站| 91高清视频在线| 日韩成人av影视| 久久日韩精品一区二区五区| 懂色av中文一区二区三区| 亚洲人成精品久久久久久| 欧美日本在线观看| 久久精品国产成人一区二区三区| 99久久99久久精品国产片果冻 | 欧美电视剧免费全集观看| 日韩国产高清影视| 欧美一区二区三区免费大片| 久久日韩精品一区二区五区| 国产高清亚洲一区| 中文字幕 久热精品 视频在线| 亚洲电影中文字幕在线观看|