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

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

?? manual_news.html

?? 關于mysql學習的 中文教程
?? HTML
?? 第 1 頁 / 共 5 頁
字號:
  <li><strong>MySQL</strong> now always reports the conflicting key values when a duplicate 
    key entry occurs. (Before this was only reported for <code>INSERT</code>). </li>
  <li>New syntax: <code>INSERT INTO tbl_name SET col_name=value,col_name=value,...</code> </li>
  <li>Most errors in the <tt>`.err'</tt> log are now prefixed with a time stamp. </li>
  <li>Added option <code>MYSQL_INIT_COMMAND</code> to <code>mysql_options()</code> to make a 
    query on connect or reconnect. </li>
  <li>Added option <code>MYSQL_READ_DEFAULT_FILE</code> and <code>MYSQL_READ_DEFAULT_GROUP</code> 
    to <code>mysql_options()</code> to read the following parameters from the <strong>MySQL</strong> 
    option files: <code>port</code>, <code>socket</code>, <code>compress</code>, <code>password</code>, 
    <code>pipe</code>, <code>timeout</code>, <code>user</code>, <code>init-command</code>, <code>host</code> 
    and <code>database</code>. </li>
  <li>Added <code>maybe_null</code> to the UDF structure. </li>
  <li>Added option <code>IGNORE</code> to <code>INSERT</code> statemants with many rows. </li>
  <li>Fixed some problems with sorting of the koi8 character sets; Users of koi8 <strong>MUST</strong> 
    run <code>isamchk -rq</code> on each table that has an index on a <code>CHAR</code> or <code>VARCHAR</code> 
    column. </li>
  <li>New script <code>mysql_setpermission</code>, by Luuk de Boer, allows one to easily 
    create new users with permissions for specific databases. </li>
  <li>Allow use of hexadecimal strings (0x...) when specifying a constant string (like in the 
    column separators with <code>LOAD DATA INFILE</code>). </li>
  <li>Ported to OS/2 (thanks to Antony T. Curtis <a href="mailto:antony.curtis@olcs.net">antony.curtis@olcs.net</a>). 
  </li>
  <li>Added more variables to <code>SHOW STATUS</code> and changed format of output to be like 
    <code>SHOW VARIABLES</code>. </li>
  <li>Added <code>extended-status</code> command to <code>mysqladmin</code> which will show 
    the new status variables. </li>
</ul>

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

<ul>
  <li><code>SET SQL_LOG_UPDATE=0</code> caused a lockup of the server. </li>
  <li>New SQL command: <code>FLUSH [ TABLES | HOSTS | LOGS | PRIVILEGES ] [, ...]</code> </li>
  <li>New SQL command: <code>KILL</code> <code>thread_id</code>. </li>
  <li>Added casts and changed include files to make <strong>MySQL</strong> easier to compile 
    on AIX and DEC OSF1 4.x </li>
  <li>Fixed conversion problem when using <code>ALTER TABLE</code> from a <code>INT</code> to 
    a short <code>CHAR()</code> column. </li>
  <li>Added <code>SELECT HIGH_PRIORITY</code>; This will get a lock for the <code>SELECT</code> 
    even if there is a thread waiting for another <code>SELECT</code> to get a <code>WRITE 
    LOCK</code>. </li>
  <li>Moved wild_compare to string class to be able to use <code>LIKE</code> on <code>BLOB</code>/<code>TEXT</code> 
    columns with <code>\0</code>. </li>
  <li>Added <code>ESCAPE</code> option to <code>LIKE</code>. </li>
  <li>Added a lot more output to <code>mysqladmin debug</code>. </li>
  <li>You can now start <code>mysqld</code> on Win32 with the <code>--flush</code> option. 
    This will flush all tables to disk after each update. This makes things much safer on 
    NT/Win98 but also <strong>MUCH</strong> slower. </li>
</ul>

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

<ul>
  <li>Czech character sets should now work much better. You must also install <a
    href="ftp://www.mysql.com/pub/mysql/Downloads/Patches/czech-3.22.8-patch">ftp://www.mysql.com/pub/mysql/Downloads/Patches/czech-3.22.8-patch</a>. 
    This patch should also be installed if you are using a character set with uses <code>my_strcoll()</code>! 
    The patch should always be safe to install (for any system), but as this patch changes 
    ISAM internals it's not yet in the default distribution. </li>
  <li><code>DATE_ADD()</code> and <code>DATE_SUB()</code> didn't work with group functions. </li>
  <li><code>mysql</code> will now also try to reconnect on <code>USE DATABASE</code> commands. 
  </li>
  <li>Fix problem with <code>ORDER BY</code> and <code>LEFT JOIN</code> and <code>const</code> 
    tables. </li>
  <li>Fixed problem with <code>ORDER BY</code> if the first <code>ORDER BY</code> column was a 
    key and the rest of the <code>ORDER BY</code> columns wasn't part of the key. </li>
  <li>Fixed a big problem with <code>OPTIMIZE TABLE</code>. </li>
  <li><strong>MySQL</strong> clients on NT will now by default first try to connect with named 
    pipes and after this with TCP/IP. </li>
  <li>Fixed a problem with <code>DROP TABLE</code> and <code>mysqladmin shutdown</code> on 
    Win32 (a fatal bug from 3.22.6). </li>
  <li>Fixed problems with <code>TIME columns</code> and negative strings. </li>
  <li>Added an extra thread signal loop on shutdown to avoid some error messages from the 
    client. </li>
  <li><strong>MySQL</strong> now uses the next available number as extension for the update 
    log file. </li>
  <li>Added patches for UNIXWARE 7. </li>
</ul>

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

<ul>
  <li>Added <code>LIMIT</code> clause for the <code>DELETE</code> statement. </li>
  <li>You can now use the <code>/*! ... */</code> syntax to hide <strong>MySQL</strong>-specific 
    keywords when you write portable code. <strong>MySQL</strong> will parse the code inside 
    the comments as if the surrounding <code>/*!</code> and <code>*/</code> comment characters 
    didn't exist. </li>
  <li><code>OPTIMIZE TABLE tbl_name</code> can now be used to reclaim disk space after many 
    deletes. Currently, this uses <code>ALTER TABLE</code> to re-generate the table, but in 
    the future it will use an integrated <code>isamchk</code> for more speed. </li>
  <li>Upgraded <code>libtool</code> to get the configure more portable. </li>
  <li>Fixed slow <code>UPDATE</code> and <code>DELETE</code> operations when using <code>DATETIME</code> 
    or <code>DATE</code> keys. </li>
  <li>Changed optimizer to make it better at deciding when to do a full join and when using 
    keys. </li>
  <li>You can now use <code>mysqladmin proc</code> to display information about your own 
    threads. Only users with the <strong>Process_priv</strong> privilege can get information 
    about all threads. </li>
  <li>Added handling of formats <code>YYMMDD</code>, <code>YYYYMMDD</code>, <code>YYMMDDHHMMSS</code> 
    for numbers when using <code>DATETIME</code> and <code>TIMESTAMP</code> types. (Formerly 
    these formats only worked with strings.) </li>
  <li>Added connect option <code>CLIENT_IGNORE_SPACE</code> to allow use of spaces after 
    function names and before <samp>`('</samp> (Powerbuilder requires this). This will make 
    all function names reserved words. </li>
  <li>Added the <code>--log-long-format</code> option to <code>mysqld</code> to enable 
    timestamps and INSERT_ID's in the update log. </li>
  <li>Added <code>--where</code> option to <code>mysqldump</code> (patch by Jim Faucette). </li>
  <li>The lexical analyzer now uses ``perfect hashing'' for faster parsing of SQL statements. </li>
</ul>

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

<ul>
  <li>Faster <code>mysqldump</code>. </li>
  <li>For the <code>LOAD DATA INFILE</code> statement, you can now use the new <code>LOCAL</code> 
    keyword to read the file from the client. <code>mysqlimport</code> will automatically use <code>LOCAL</code> 
    when importing with the TCP/IP protocol. </li>
  <li>Fixed small optimize problem when updating keys. </li>
  <li>Changed makefiles to support shared libraries. </li>
  <li><strong>MySQL</strong>-NT can now use named pipes, which means that you can now use <strong>MySQL</strong>-NT 
    without having to install TCP/IP. </li>
</ul>

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

<ul>
  <li>All table lock handing is changed to avoid some very subtle deadlocks when using <code>DROP 
    TABLE</code>, <code>ALTER TABLE</code>, <code>DELETE FROM TABLE</code> and <code>mysqladmin 
    flush-tables</code> under heavy usage. Changed locking code to get better handling of 
    locks of different types. </li>
  <li>Updated <code>DBI</code> to 1.00 and <code>DBD</code> to 1.2.0. </li>
  <li>Added a check that the error message file contains error messages suitable for the 
    current version of <code>mysqld</code>. (To avoid errors if you accidentally try to use an 
    old error message file.) </li>
  <li>All count structures in the client (<code>affected_rows()</code>, <code>insert_id()</code>,...) 
    are now of type <code>BIGINT</code> to allow 64-bit values to be used. This required a 
    minor change in the <strong>MySQL</strong> protocol which should affect only old clients 
    when using tables with <code>AUTO_INCREMENT</code> values &gt; 24M. </li>
  <li>The return type of <code>mysql_fetch_lengths()</code> has changed from <code>uint *</code> 
    to <code>ulong *</code>. This may give a warning for old clients but should work on most 
    machines. </li>
  <li>Change <code>mysys</code> and <code>dbug</code> libraries to allocate all thread 
    variables in one struct. This makes it easier to make a threaded <tt>`libmysql.dll'</tt> 
    library. </li>
  <li>Use the result from <code>gethostname()</code> (instead of <code>uname()</code>) when 
    constructing <tt>`.pid'</tt> file names. </li>
  <li>New better compressed server/client protocol. </li>
  <li><code>COUNT()</code>, <code>STD()</code> and <code>AVG()</code> are extended to handle 
    more than 4G rows. </li>
  <li>You can now store values in the range <code>-838:59:59</code> &lt;= x &lt;= <code>838:59:59</code> 
    in a <code>TIME</code> column. </li>
  <li><strong>WARNING: INCOMPATIBLE CHANGE!!</strong> If you set a <code>TIME</code> column to 
    too short a value, <strong>MySQL</strong> now assumes the value is given as: <code>[[[D 
    ]HH:]MM:]SS</code> instead of <code>HH[:MM[:SS]]</code>. </li>
  <li><code>TIME_TO_SEC()</code> and <code>SEC_TO_TIME()</code> can now handle negative times 
    and hours up to 32767. </li>
  <li>Added new option <code>SET OPTION SQL_LOG_UPDATE={0|1}</code> to allow users with the <strong>process</strong> 
    privilege to bypass the update log. (Modified patch from Sergey A Mukhin <a
    href="mailto:violet@rosnet.net">violet@rosnet.net</a>.) </li>
  <li>Fixed fatal bug in <code>LPAD()</code>. </li>
  <li>Initialize line buffer in <tt>`mysql.cc'</tt> to make <code>BLOB</code> reading from 
    pipes safer. </li>
  <li>Added <code>-O max_connect_errors=#</code> option to <code>mysqld</code>. Connect errors 
    are now reset for each correct connection. </li>
  <li>Increased the default value of <code>max_allowed_packet</code> to <code>1M</code> in <code>mysqld</code>. 
  </li>
  <li>Added <code>--low-priority-updates</code> option to <code>mysqld</code>, to give 
    table-modifying operations (<code>INSERT</code>, <code>REPLACE</code>, <code>UPDATE</code>, 
    <code>DELETE</code>) lower priority than retrievals. You can now use <code>{INSERT | 
    REPLACE | UPDATE | DELETE} LOW_PRIORITY ...</code> You can also use <code>SET OPTION 
    SQL_LOW_PRIORITY_UPDATES={0|1}</code> to change the priority for one thread. One side 
    effect is that <code>LOW_PRIORITY</code> is now a reserved word. :( </li>
  <li>Add support for <code>INSERT INTO table ... VALUES(...),(...),(...)</code>, to allow 
    inserting multiple rows with a single statement. </li>
  <li><code>INSERT INTO tbl_name</code> is now also cached when used with <code>LOCK TABLES</code>. 
    (Previously only <code>INSERT ... SELECT</code> and <code>LOAD DATA INFILE</code> were 
    cached.) </li>
  <li>Allow <code>GROUP BY</code> functions with <code>HAVING</code>: <pre>mysql&gt; SELECT col FROM table GROUP BY col HAVING COUNT(*)&gt;0;
</pre>
  </li>
  <li><code>mysqld</code> will now ignore trailing <samp>`;'</samp> characters in queries. 
    This is to make it easier to migrate from some other SQL servers that require the trailing 
    <samp>`;'</samp>. </li>
  <li>Fix for corrupted fixed-format output generated by <code>SELECT INTO OUTFILE</code>. </li>
  <li><strong>WARNING: INCOMPATIBLE CHANGE!!</strong> Added Oracle <code>GREATEST()</code> and 
    <code>LEAST()</code> functions. You must now use these instead of the <code>MAX()</code> 
    and <code>MIN()</code> functions to get the largest/smallest value from a list of values. 
    These can now handle <code>REAL</code>, <code>BIGINT</code> and string (<code>CHAR</code> 
    or <code>VARCHAR</code>) values. </li>
  <li><strong>WARNING: INCOMPATIBLE CHANGE!!</strong> <code>DAYOFWEEK()</code> had offset 0 
    for Sunday. Changed the offset to 1. </li>
  <li>Give an error for queries that mix <code>GROUP BY</code> columns and fields when there 
    is no <code>GROUP BY</code> specification. </li>
  <li>Added <code>--vertical</code> option to <code>mysql</code>, for printing results in 
    vertical mode. </li>
  <li>Index-only optimization; some queries are now resolved using only indexes. Until <strong>MySQL</strong> 
    4.0, this works only for numeric columns. See section <a
    href="manual_Performance.html#MySQL_indexes">10.4 MySQL index use</a>. </li>
  <li>Lots of new benchmarks. </li>
  <li>A new C API chapter and lots of other improvements in the manual. </li>
</ul>

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

<ul>
  <li>Added <code>--tmpdir</code> option to <code>mysqld</code>, for specifying the location 
    of the temporary file directory. </li>
  <li><strong>MySQL</strong> now automatically changes a query from an ODBC client: <pre>SELECT ... FROM table WHERE auto_increment_column IS NULL
</pre>
    <p>to: </p>
    <pre>SELECT ... FROM table WHERE auto_increment_column == LAST_INSERT_ID()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美视频一区二区三区在线观看| 久久精品这里都是精品| 久久久影视传媒| 亚洲mv大片欧洲mv大片精品| 成人美女在线视频| 精品日韩欧美在线| 日本午夜精品一区二区三区电影 | 国产精品萝li| 精品一区二区在线视频| 欧美视频一区二| 亚洲免费观看高清完整版在线观看| 国产激情精品久久久第一区二区 | 国产不卡一区视频| 欧美哺乳videos| 美国精品在线观看| 这里只有精品免费| 香蕉影视欧美成人| 欧美日韩情趣电影| 午夜久久福利影院| 在线不卡a资源高清| 天天综合网天天综合色| 精品无人码麻豆乱码1区2区 | 成人中文字幕合集| 欧美成人三级在线| 欧美a一区二区| 欧美日韩精品是欧美日韩精品| 亚洲免费av在线| 99riav久久精品riav| 中国色在线观看另类| 国产精品自在欧美一区| 久久久久久99精品| 国产精品亚洲成人| 中文字幕不卡三区| 91在线观看成人| 一区二区三区视频在线看| 色狠狠av一区二区三区| 亚洲成年人影院| 欧美精品一二三区| 另类小说综合欧美亚洲| 久久久久久久久久久99999| 国产伦精品一区二区三区视频青涩| 欧美mv日韩mv| 成人黄色小视频| 尤物在线观看一区| 欧美色爱综合网| 日本视频免费一区| 久久综合九色欧美综合狠狠| 大胆亚洲人体视频| 一区二区三区中文字幕精品精品 | 午夜在线成人av| 欧美日本在线视频| 久久精品国产精品青草| 国产日韩欧美麻豆| 91福利在线导航| 日韩中文字幕91| 国产亚洲欧洲997久久综合| 91伊人久久大香线蕉| 亚洲精品高清在线| 精品久久久久久久久久久久包黑料 | 一片黄亚洲嫩模| 日韩一卡二卡三卡国产欧美| 国产成人av一区二区三区在线 | 不卡大黄网站免费看| 亚洲综合在线视频| 久久久亚洲高清| 91福利视频在线| 国产剧情av麻豆香蕉精品| 亚洲精品高清视频在线观看| 日韩美女视频在线| 色婷婷国产精品久久包臀| 免费在线观看日韩欧美| 亚洲欧美成aⅴ人在线观看| 欧美不卡一区二区| 欧美性猛交xxxxxx富婆| 国产精品一区二区你懂的| 亚洲小少妇裸体bbw| 国产精品色婷婷久久58| 日韩精品自拍偷拍| 欧美群妇大交群中文字幕| voyeur盗摄精品| 美女脱光内衣内裤视频久久影院| 亚洲男女毛片无遮挡| 久久综合九色综合97婷婷| 欧美精品久久99| 色综合久久久久综合99| 国产成人精品午夜视频免费| 麻豆精品在线看| 亚洲成av人片一区二区| 亚洲精品国产一区二区精华液| 久久久亚洲精品一区二区三区| 7777精品伊人久久久大香线蕉的 | 久久草av在线| 亚洲图片自拍偷拍| 亚洲欧洲av在线| 精品久久久久99| 91精品国产色综合久久不卡蜜臀| 日本乱码高清不卡字幕| 本田岬高潮一区二区三区| 国产精品一区二区免费不卡| 麻豆成人免费电影| 蜜臀久久久99精品久久久久久| 亚洲一区二区三区四区的| 亚洲免费视频成人| 久久久久久久综合日本| 日韩欧美三级在线| 日韩欧美一级精品久久| 欧美精品久久99| 欧美一区二区三区四区久久| 欧美老女人第四色| 3atv一区二区三区| 欧美精品xxxxbbbb| 3d成人动漫网站| 日韩亚洲欧美成人一区| 欧美一级日韩一级| 欧美不卡一区二区| 精品国产乱码久久久久久牛牛 | 国产一区二区91| 精品一区二区免费视频| 麻豆成人久久精品二区三区红 | 久久亚洲捆绑美女| 国产午夜一区二区三区| 久久久美女毛片| 国产精品青草综合久久久久99| 国产精品理论片| 亚洲欧美一区二区久久| 亚洲福利一区二区| 日韩专区欧美专区| 蓝色福利精品导航| 国产美女久久久久| 91免费观看国产| 欧美美女一区二区| 久久你懂得1024| 国产精品全国免费观看高清| 国产精品动漫网站| 亚洲成av人片一区二区三区| 久久91精品久久久久久秒播| 国产精品影音先锋| 色哟哟一区二区在线观看| 91精品国产综合久久香蕉麻豆| 亚洲精品在线免费观看视频| 日本一区二区三区在线不卡| 一区二区三区自拍| 久久99久久精品| 成人丝袜18视频在线观看| 欧美性xxxxxxxx| 精品少妇一区二区三区| 国产精品久久久久婷婷二区次| 亚洲激情网站免费观看| 蜜臀a∨国产成人精品| 成人激情免费电影网址| 欧美日韩国产在线播放网站| 精品理论电影在线观看| 亚洲另类中文字| 九一九一国产精品| 色悠悠亚洲一区二区| 久久久久久一级片| 天堂精品中文字幕在线| 成a人片国产精品| 日韩网站在线看片你懂的| 亚洲视频网在线直播| 国内精品第一页| 欧美色视频在线观看| 国产精品传媒视频| 九九热在线视频观看这里只有精品| 色天使色偷偷av一区二区 | 91精品国产色综合久久ai换脸| 中文字幕欧美日韩一区| 秋霞午夜av一区二区三区| 91浏览器入口在线观看| 国产日产欧美一区| 精品亚洲免费视频| 欧美日韩黄色影视| 一区二区三区成人| 成熟亚洲日本毛茸茸凸凹| 精品少妇一区二区三区在线播放 | 日韩三级精品电影久久久 | 亚洲另类春色国产| 国产91精品欧美| 久久久久久久久伊人| 美国一区二区三区在线播放| 欧美日韩三级一区二区| 一区二区三区精品久久久| av色综合久久天堂av综合| 久久久久国产成人精品亚洲午夜 | 日韩精品国产精品| 欧美丝袜丝nylons| 亚洲欧美日韩在线不卡| 北条麻妃国产九九精品视频| 国产精品网站在线| 国产乱子轮精品视频| 日韩精品中文字幕在线一区| 青青草91视频| 7777精品伊人久久久大香线蕉| 亚洲第一二三四区| 欧美日韩一区不卡| 日韩高清不卡一区二区| 欧美一区二区成人6969| 蜜桃av噜噜一区| 欧美mv和日韩mv国产网站| 国产一区二区三区四区五区入口|