?? selfcontained.html
字號:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><title>SQLite Is Self-Contained</title><style type="text/css">body { margin: auto; font-family: "Verdana" "sans-serif"; padding: 8px 1%;}a { color: #45735f }a:visited { color: #734559 }.logo { position:absolute; margin:3px; }.tagline { float:right; text-align:right; font-style:italic; width:240px; margin:12px; margin-top:58px;}.toolbar { font-variant: small-caps; text-align: center; line-height: 1.6em; margin: 0; padding:1px 8px;}.toolbar a { color: white; text-decoration: none; padding: 6px 12px; }.toolbar a:visited { color: white; }.toolbar a:hover { color: #80a796; background: white; }.content { margin: 5%; }.content dt { font-weight:bold; }.content dd { margin-bottom: 25px; margin-left:20%; }.content ul { padding:0px; padding-left: 15px; margin:0px; }/* rounded corners */.se { background: url(images/se.png) 100% 100% no-repeat #80a796}.sw { background: url(images/sw.png) 0% 100% no-repeat }.ne { background: url(images/ne.png) 100% 0% no-repeat }.nw { background: url(images/nw.png) 0% 0% no-repeat }</style><meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head><body><div><!-- container div to satisfy validator --><a href="index.html"><img class="logo" src="images/SQLite.gif" alt="SQLite Logo" border="0"></a><div><!-- IE hack to prevent disappearing logo--></div><div class="tagline">Small. Fast. Reliable.<br>Choose any three.</div><table width=100% style="clear:both"><tr><td> <div class="se"><div class="sw"><div class="ne"><div class="nw"> <div class="toolbar"> <a href="about.html">About</a> <a href="sitemap.html">Sitemap</a> <a href="docs.html">Documentation</a> <a href="download.html">Download</a> <a href="copyright.html">License</a> <a href="news.html">News</a> <a href="http://www.sqlite.org/cvstrac/index">Developers</a> <a href="support.html">Support</a> </div></div></div></div></div></td></tr></table> <h2>SQLite Is Self-Contained</h2><p>SQLite is largely self-contained. It requires very minimalsupport from external libraries or from the operating system.This makes it well suited for use in embedded devices thatlack the support infrastructure of a desktop computer. Thisalso makes SQLite appropriate for use within applications thatneed to run without modification on a wide variety of computersof varying configurations.</p><p>SQLite is written in ANSI-C and should be easily compiled byany standard C compiler. It makes minimal use of the standard Clibrary. The only required C library functions called are:</p><ul><li> memset()<li> memcpy()<li> memcmp()<li> strcmp()<li> malloc(), free(), and realloc()</ul><p>SQLite can be configured at compile-time to use a staticbuffer in place of calling malloc for the memory it needs.The date and time SQL functions provided by SQLite requiresome additional C library support, but those functions canbe also be omitted from the build using compile-time options.</p><p>Communications between SQLite and the operating system and disk aremediated through an interchangable Virtual File System (VFS) layer.VFS modules for Unix (linux and MacOSX), OS/2, Win32, and WinCE areprovided in the source tree. It is a simple matter to devise analternative VFS for embedded devices. </p><p>The SQLite source code is available as an"amalgamation" - a single large C source code file.Projects that want to include SQLite can do so simplyby dropping this one source file (named "sqlite3.c") andits corresponding header ("sqlite3.h") into their sourcetree and compiling it together with the rest of thecode. SQLite does not link against any external libraries(other than the C library, as described above) and doesnot require any special build support.</p><hr><small><i>This page last modified 2008/03/03 13:41:48 UTC</i></small></div></body></html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -