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

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

?? changes.tcl

?? sqlite庫
?? TCL
?? 第 1 頁 / 共 4 頁
字號:
the database.</li><li>Various bug fixes and documentation updates.</li>}chng {2004 June 30 (3.0.2 beta)} {<li>The first beta release for SQLite 3.0.</li>}chng {2004 June 22 (3.0.1 alpha)} {<li><font color="red"><b>    *** Alpha Release - Research And Testing Use Only ***</b></font><li>Lots of bug fixes.</li>}chng {2004 June 18 (3.0.0 alpha)} {<li><font color="red"><b>    *** Alpha Release - Research And Testing Use Only ***</b></font><li>Support for internationalization including UTF-8, UTF-16, and    user defined collating sequences.</li><li>New file format that is 25% to 35% smaller for typical use.</li><li>Improved concurrency.</li><li>Atomic commits for ATTACHed databases.</li><li>Remove cruft from the APIs.</li><li>BLOB support.</li><li>64-bit rowids.</li><li><a href="version3.html">More information</a>.}chng {2004 June 9 (2.8.14)} {<li>Fix the min() and max() optimizer so that it works when the FROM    clause consists of a subquery.</li><li>Ignore extra whitespace at the end of of "." commands in the shell.</li><li>Bundle sqlite_encode_binary() and sqlite_decode_binary() with the     library.</li><li>The TEMP_STORE and DEFAULT_TEMP_STORE pragmas now work.</li><li>Code changes to compile cleanly using OpenWatcom.</li><li>Fix VDBE stack overflow problems with INSTEAD OF triggers and    NULLs in IN operators.</li><li>Add the global variable sqlite_temp_directory which if set defines the    directory in which temporary files are stored.</li><li>sqlite_interrupt() plays well with VACUUM.</li><li>Other minor bug fixes.</li>}chng {2004 March 8 (2.8.13)} {<li>Refactor parts of the code in order to make the code footprint    smaller.  The code is now also a little bit faster.</li><li>sqlite_exec() is now implemented as a wrapper around sqlite_compile()    and sqlite_step().</li><li>The built-in min() and max() functions now honor the difference between    NUMERIC and TEXT datatypes.  Formerly, min() and max() always assumed    their arguments were of type NUMERIC.</li><li>New HH:MM:SS modifier to the built-in date/time functions.</li><li>Experimental sqlite_last_statement_changes() API added.  Fixed the    the last_insert_rowid() function so that it works correctly with    triggers.</li><li>Add functions prototypes for the database encryption API.</li><li>Fix several nuisance bugs.</li>}chng {2004 February 8 (2.8.12)} {<li>Fix a bug that will might corrupt the rollback journal if a power failure    or external program halt occurs in the middle of a COMMIT.  The corrupt    journal can lead to database corruption when it is rolled back.</li><li>Reduce the size and increase the speed of various modules, especially    the virtual machine.</li><li>Allow "&lt;expr&gt; IN &lt;table&gt;" as a shorthand for    "&lt;expr&gt; IN (SELECT * FROM &lt;table&gt;".</li><li>Optimizations to the sqlite_mprintf() routine.</li><li>Make sure the MIN() and MAX() optimizations work within subqueries.</li>}chng {2004 January 14 (2.8.11)} {<li>Fix a bug in how the IN operator handles NULLs in subqueries.  The bug    was introduced by the previous release.</li>}chng {2004 January 13 (2.8.10)} {<li>Fix a potential database corruption problem on Unix caused by the fact    that all posix advisory locks are cleared whenever you close() a file.    The work around it to embargo all close() calls while locks are     outstanding.</li><li>Performance enhancements on some corner cases of COUNT(*).</li><li>Make sure the in-memory backend response sanely if malloc() fails.</li><li>Allow sqlite_exec() to be called from within user-defined SQL    functions.</li><li>Improved accuracy of floating-point conversions using "long double".</li><li>Bug fixes in the experimental date/time functions.</li>}chng {2004 January 5 (2.8.9)} {<li>Fix a 32-bit integer overflow problem that could result in corrupt    indices in a database if large negative numbers (less than -2147483648)    were inserted into a indexed numeric column.</li><li>Fix a locking problem on multi-threaded Linux implementations.</li><li>Always use "." instead of "," as the decimal point even if the locale    requests ",".</li><li>Added UTC to localtime conversions to the experimental date/time    functions.</li><li>Bug fixes to date/time functions.</li>}chng {2003 December 17 (2.8.8)} {<li>Fix a critical bug introduced into 2.8.0 which could cause    database corruption.</li><li>Fix a problem with 3-way joins that do not use indices</li><li>The VACUUM command now works with the non-callback API</li><li>Improvements to the "PRAGMA integrity_check" command</li>}chng {2003 December 4 (2.8.7)} {<li>Added experimental sqlite_bind() and sqlite_reset() APIs.</li><li>If the name of the database is an empty string, open a new database    in a temporary file that is automatically deleted when the database    is closed.</li><li>Performance enhancements in the lemon-generated parser</li><li>Experimental date/time functions revised.</li><li>Disallow temporary indices on permanent tables.</li><li>Documentation updates and typo fixes</li><li>Added experimental sqlite_progress_handler() callback API</li><li>Removed support for the Oracle8 outer join syntax.</li><li>Allow GLOB and LIKE operators to work as functions.</li><li>Other minor documentation and makefile changes and bug fixes.</li>}chng {2003 August 21 (2.8.6)} {<li>Moved the CVS repository to www.sqlite.org</li><li>Update the NULL-handling documentation.</li><li>Experimental date/time functions added.</li><li>Bug fix: correctly evaluate a view of a view without segfaulting.</li><li>Bug fix: prevent database corruption if you dropped a    trigger that had the same name as a table.</li><li>Bug fix: allow a VACUUM (without segfaulting) on an empty    database after setting the EMPTY_RESULT_CALLBACKS pragma.</li><li>Bug fix: if an integer value will not fit in a 32-bit int, store it in    a double instead.</li><li>Bug fix: Make sure the journal file directory entry is committed to disk    before writing the database file.</li>}chng {2003 July 22 (2.8.5)} {<li>Make LIMIT work on a compound SELECT statement.</li><li>LIMIT 0 now shows no rows.  Use LIMIT -1 to see all rows.</li><li>Correctly handle comparisons between an INTEGER PRIMARY KEY and    a floating point number.</li><li>Fix several important bugs in the new ATTACH and DETACH commands.</li><li>Updated the <a href="nulls.html">NULL-handling document</a>.</li> <li>Allow NULL arguments in sqlite_compile() and sqlite_step().</li><li>Many minor bug fixes</li>}chng {2003 June 29 (2.8.4)} {<li>Enhanced the "PRAGMA integrity_check" command to verify indices.</li><li>Added authorization hooks for the new ATTACH and DETACH commands.</li><li>Many documentation updates</li><li>Many minor bug fixes</li>}chng {2003 June 4 (2.8.3)} {<li>Fix a problem that will corrupt the indices on a table if you    do an INSERT OR REPLACE or an UPDATE OR REPLACE on a table that    contains an INTEGER PRIMARY KEY plus one or more indices.</li><li>Fix a bug in windows locking code so that locks work correctly    when simultaneously accessed by Win95 and WinNT systems.</li><li>Add the ability for INSERT and UPDATE statements to refer to the    "rowid" (or "_rowid_" or "oid") columns.</li><li>Other important bug fixes</li>}chng {2003 May 17 (2.8.2)} {<li>Fix a problem that will corrupt the database file if you drop a    table from the main database that has a TEMP index.</li>}chng {2003 May 16 (2.8.1)} {<li>Reactivated the VACUUM command that reclaims unused disk space in     a database file.</li><li>Added the ATTACH and DETACH commands to allow interacting with multiple    database files at the same time.</li><li>Added support for TEMP triggers and indices.</li><li>Added support for in-memory databases.</li><li>Removed the experimental sqlite_open_aux_file().  Its function is    subsumed in the new ATTACH command.</li><li>The precedence order for ON CONFLICT clauses was changed so that    ON CONFLICT clauses on BEGIN statements have a higher precedence than    ON CONFLICT clauses on constraints.<li>Many, many bug fixes and compatibility enhancements.</li>}chng {2003 Feb 16 (2.8.0)} {<li>Modified the journal file format to make it more resistant to corruption    that can occur after an OS crash or power failure.</li><li>Added a new C/C++ API that does not use callback for returning data.</li>}chng {2003 Jan 25 (2.7.6)} {<li>Performance improvements.  The library is now much faster.</li><li>Added the <b>sqlite_set_authorizer()</b> API.  Formal documentation has    not been written - see the source code comments for instructions on    how to use this function.</li><li>Fix a bug in the GLOB operator that was preventing it from working    with upper-case letters.</li><li>Various minor bug fixes.</li>}chng {2002 Dec 27 (2.7.5)} {<li>Fix an uninitialized variable in pager.c which could (with a probability    of about 1 in 4 billion) result in a corrupted database.</li>}chng {2002 Dec 17 (2.7.4)} {<li>Database files can now grow to be up to 2^41 bytes.  The old limit    was 2^31 bytes.</li><li>The optimizer will now scan tables in the reverse if doing so will    satisfy an ORDER BY ... DESC clause.</li><li>The full pathname of the database file is now remembered even if    a relative path is passed into sqlite_open().  This allows     the library to continue operating correctly after a chdir().</li><li>Speed improvements in the VDBE.</li><li>Lots of little bug fixes.</li>}chng {2002 Oct 30 (2.7.3)} {<li>Various compiler compatibility fixes.</li><li>Fix a bug in the "expr IN ()" operator.</li><li>Accept column names in parentheses.</li><li>Fix a problem with string memory management in the VDBE</li><li>Fix a bug in the "table_info" pragma"</li><li>Export the sqlite_function_type() API function in the Windows DLL</li><li>Fix locking behavior under windows</li><li>Fix a bug in LEFT OUTER JOIN</li>}chng {2002 Sep 25 (2.7.2)} {<li>Prevent journal file overflows on huge transactions.</li><li>Fix a memory leak that occurred when sqlite_open() failed.</li><li>Honor the ORDER BY and LIMIT clause of a SELECT even if the    result set is used for an INSERT.</li><li>Do not put write locks on the file used to hold TEMP tables.</li><li>Added documentation on SELECT DISTINCT and on how SQLite handles NULLs.</li><li>Fix a problem that was causing poor performance when many thousands    of SQL statements were executed by a single sqlite_exec() call.</li>}chng {2002 Aug 31 (2.7.1)} {<li>Fix a bug in the ORDER BY logic that was introduced in version 2.7.0</li><li>C-style comments are now accepted by the tokenizer.</li><li>INSERT runs a little faster when the source is a SELECT statement.</li>}chng {2002 Aug 25 (2.7.0)} {<li>Make a distinction between numeric and text values when sorting.    Text values sort according to memcmp().  Numeric values sort in    numeric order.</li><li>Allow multiple simultaneous readers under windows by simulating    the reader/writers locks that are missing from Win95/98/ME.</li><li>An error is now returned when trying to start a transaction if    another transaction is already active.</li>}chng {2002 Aug 12 (2.6.3)} {<li>Add the ability to read both little-endian and big-endian databases.    So database created under SunOS or MacOSX can be read and written    under Linux or Windows and vice versa.</li><li>Convert to the new website: http://www.sqlite.org/</li><li>Allow transactions to span Linux Threads</li><li>Bug fix in the processing of the ORDER BY clause for GROUP BY queries</li>}chng {2002 Jly 30 (2.6.2)} {<li>Text files read by the COPY command can now have line terminators    of LF,  CRLF, or CR.</li><li>SQLITE_BUSY is handled correctly if encountered during database    initialization.</li><li>Fix to UPDATE triggers on TEMP tables.</li><li>Documentation updates.</li>}chng {2002 Jly 19 (2.6.1)} {<li>Include a static string in the library that responds to the RCS    "ident" command and which contains the library version number.</li><li>Fix an assertion failure that occurred when deleting all rows of    a table with the "count_changes" pragma turned on.</li><li>Better error reporting when problems occur during the automatic    2.5.6 to 2.6.0 database format upgrade.</li>}chng {2002 Jly 17 (2.6.0)} {<li>Change the format of indices to correct a design flaw the originated    with version 2.1.0.  <font color="red">*** This is an incompatible    file format change ***</font>  When version 2.6.0 or later of the    library attempts to open a database file created by version 2.5.6 or    earlier, it will automatically and irreversibly convert the file format.    <b>Make backup copies of older database files before opening them with    version 2.6.0 of the library.</b>    </li>}chng {2002 Jly 7 (2.5.6)} {<li>Fix more problems with rollback.  Enhance the test suite to exercise    the rollback logic extensively in order to prevent any future problems.    </li>}chng {2002 Jly 6 (2.5.5)} {<li>Fix a bug which could cause database corruption during a rollback.    This bugs was introduced in version 2.4.0 by the freelist    optimization of checking [410].</li><li>Fix a bug in aggregate functions for VIEWs.</li><li>Other minor changes and enhancements.</li>}chng {2002 Jly 1 (2.5.4)} {<li>Make the "AS" keyword optional again.</li><li>The datatype of columns now appear in the 4th argument to the    callback.</li><li>Added the <b>sqlite_open_aux_file()</b> API, though it is still    mostly undocumented and untested.</li><li>Added additional test cases and fixed a few bugs that those    test cases found.</li>}chng {2002 Jun 24 (2.5.3)} {<li>Bug fix:  Database corruption can occur due to the optimization    that was introduced in version 2.4.0 (check-in [410]).  The problem    should now be fixed.  The use of versions 2.4.0 through 2.5.2 is    not recommended.</li>}chng {2002 Jun 24 (2.5.2)} {<li>Added the new <b>SQLITE_TEMP_MASTER</b> table which records the schema    for temporary tables in the same way that <b>SQLITE_MASTER</b> does for    persistent tables.</li><li>Added an optimization to UNION ALL</li><li>Fixed a bug in the processing of LEFT OUTER JOIN</li><li>The LIMIT clause now works on subselects</li><li>ORDER BY works on subselects</li><li>There is a new TypeOf() function used to determine if an expression    is numeric or text.</li><li>Autoincrement now works for INSERT from a SELECT.</li>}chng {2002 Jun 19 (2.5.1)} {<li>The query optimizer now attempts to implement the ORDER BY clause    using an index.  Sorting is still used if not suitable index is    available.</li>}chng {2002 Jun 17 (2.5.0)} {<li>Added support for row triggers.</li><li>Added SQL-92 compliant handling of NULLs.</li><li>Add support for the full SQL-92 join syntax and LEFT OUTER JOINs.</li><li>Double-quoted strings interpreted as column names not text literals.</li><li>Parse (but do not implement) foreign keys.</li><li>Performance improvements in the parser, pager, and WHERE clause code    generator.</li><li>Make the LIMIT clause work on subqueries.  (ORDER BY still does not    work, though.)</li><li>Added the "%Q" expansion to sqlite_*_printf().</li><li>Bug fixes too numerous to mention (see the change log).</li>}chng {2002 May 09 (2.4.12)} {<li>Added logic to detect when the library API routines are called out    of sequence.</li>}chng {2002 May 08 (2.4.11)} {<li>Bug fix: Column names in the result set were not being generated    correctly for some (rather complex) VIEWs.  This could cause a    segfault under certain circumstances.</li>}chng {2002 May 02 (2.4.10)} {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲制服丝袜一区| 欧美色图免费看| 蜜桃久久av一区| 亚洲视频一区在线| 国产精品家庭影院| 日韩欧美一区在线观看| 日韩视频一区在线观看| 欧美日韩久久久一区| 欧美午夜精品一区二区三区| 日本精品一区二区三区高清| 丁香桃色午夜亚洲一区二区三区| 精品一区二区综合| 国产高清不卡一区二区| www.亚洲精品| 欧美视频在线一区二区三区 | 国产拍揄自揄精品视频麻豆| 久久久久久97三级| 国产精品久久午夜夜伦鲁鲁| 亚洲免费av观看| 婷婷中文字幕综合| 国产一区二区在线观看视频| 国产精品66部| 色综合久久88色综合天天6| 欧美三级资源在线| 久久影视一区二区| 亚洲一区二区中文在线| 久久er99精品| 日本精品一区二区三区高清 | 国产精品麻豆久久久| 一区二区久久久| 蜜桃av噜噜一区| 91偷拍与自偷拍精品| 制服丝袜国产精品| 国产精品久久久久一区 | 久久久精品国产免大香伊| 亚洲欧洲国产专区| 老司机免费视频一区二区| 成人午夜电影网站| 在线综合亚洲欧美在线视频| 中文字幕免费在线观看视频一区| 亚洲国产欧美在线人成| 国产精品一区二区在线观看不卡| 欧美日韩在线播放| 国产精品乱码妇女bbbb| 青青青伊人色综合久久| 91美女片黄在线观看| 2020国产精品| 首页国产丝袜综合| 99久久精品国产网站| 精品99一区二区| 亚洲成人一区二区| 国内精品免费**视频| 欧美性大战久久久久久久蜜臀| 国产欧美久久久精品影院| 亚洲精品视频观看| 成人手机电影网| 精品成人佐山爱一区二区| 一区二区欧美国产| 成人av在线资源网站| 久久免费看少妇高潮| 亚洲激情成人在线| 99久久免费视频.com| 国产日产欧美一区| 国产精品主播直播| 91传媒视频在线播放| 亚洲色欲色欲www在线观看| 国产成人av网站| 欧美本精品男人aⅴ天堂| 日韩电影在线观看网站| 欧美日本在线播放| 日韩在线一区二区三区| 欧美巨大另类极品videosbest| 亚洲一区二区三区免费视频| 色成年激情久久综合| 亚洲欧美另类小说| 91污片在线观看| 一区二区三区欧美亚洲| 在线视频一区二区免费| 亚洲曰韩产成在线| 欧美精品一卡二卡| 美女性感视频久久| 精品国产3级a| 国产91在线|亚洲| 国产精品毛片无遮挡高清| av亚洲产国偷v产偷v自拍| 亚洲日本va在线观看| 在线精品视频一区二区| 性久久久久久久| 日韩久久久精品| 国产成人综合网| 自拍偷拍国产精品| 欧美体内she精视频| 日韩一区精品字幕| 久久久久久久电影| 一本色道综合亚洲| 日韩高清在线观看| 国产偷国产偷亚洲高清人白洁| 成人免费毛片app| 一区二区三区四区在线免费观看| 欧美日韩久久不卡| 国产一区二区美女| 亚洲毛片av在线| 欧美一级高清片| 不卡影院免费观看| 1024成人网| 日韩欧美国产不卡| jizzjizzjizz欧美| 轻轻草成人在线| 亚洲欧美在线高清| 欧美一区二区三区免费观看视频| 国产麻豆9l精品三级站| 亚洲欧美激情插 | 91福利区一区二区三区| 久久精品国内一区二区三区| 国产精品久久久久天堂| 日韩免费性生活视频播放| 色综合久久中文综合久久97| 免费观看在线色综合| 亚洲日本在线看| 久久先锋影音av| 欧美日韩一级片网站| 国产精品1区2区| 天天影视涩香欲综合网| 国产精品久久久久天堂| 日韩一区二区电影在线| 色婷婷久久久亚洲一区二区三区| 国内精品在线播放| 日韩成人免费电影| 一区二区三区四区国产精品| 国产欧美精品一区二区色综合 | 奇米影视在线99精品| 亚洲欧洲韩国日本视频| 精品久久久久久久一区二区蜜臀| 91美女片黄在线| 丁香另类激情小说| 国产成人8x视频一区二区| 日本大胆欧美人术艺术动态| 亚洲一区二区高清| 国产精品久久久久久亚洲毛片 | 免费在线观看视频一区| 尤物视频一区二区| 亚洲少妇屁股交4| 国产精品情趣视频| 国产精品人成在线观看免费| 久久久综合激的五月天| 精品三级av在线| 欧美精品一区二区三区一线天视频| 欧美三级视频在线| 欧美日韩日本视频| 欧美二区三区91| 欧美一区二区三区四区在线观看| 欧美精品高清视频| 这里只有精品电影| 欧美大片免费久久精品三p| 欧美一级视频精品观看| 日韩欧美国产综合在线一区二区三区| 欧美日韩中文字幕一区二区| 欧美色涩在线第一页| 欧美精品一卡二卡| 日韩欧美国产午夜精品| 精品国产乱码久久久久久闺蜜 | av电影天堂一区二区在线| 成人av在线资源网站| 日本精品视频一区二区| 欧美精品日韩精品| 精品国产91久久久久久久妲己 | 国产乱人伦精品一区二区在线观看| 激情图区综合网| 风流少妇一区二区| 色综合久久久久综合体桃花网| 欧美中文字幕不卡| 欧美一区二区三区在线电影| 久久只精品国产| 亚洲人成人一区二区在线观看| 亚洲免费视频成人| 一区二区三区色| 免费观看久久久4p| 国产精品18久久久久久久网站| 91小宝寻花一区二区三区| 在线精品视频一区二区三四| 日韩精品一区二区三区蜜臀 | 久久99九九99精品| 粉嫩一区二区三区性色av| 大美女一区二区三区| 欧美午夜寂寞影院| 欧美电影精品一区二区| 国产精品久久久久久福利一牛影视| 亚洲一区二区三区国产| 欧美aⅴ一区二区三区视频| 国产一区二区在线看| 在线亚洲一区观看| 国产三级欧美三级日产三级99 | 日韩女优电影在线观看| 国产欧美日韩精品一区| 青青青伊人色综合久久| 91同城在线观看| 国产亚洲人成网站| 日日嗨av一区二区三区四区| 美女视频免费一区| 欧美日韩综合一区|