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

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

?? fastdb.htm

?? 嵌入式數據庫軟件 嵌入式數據庫軟件 嵌入式數據庫軟件
?? HTM
?? 第 1 頁 / 共 5 頁
字號:
<HTML><HEAD><TITLE>FastDB Main Memory Database Management System</TITLE><UL><LI> <A HREF = "#introduction">Introduction</A><LI> <A HREF = "#sql">Query language</A>  <UL>  <LI> <A HREF = "#structure">Structures</A>  <LI> <A HREF = "#array">Arrays</A>  <LI> <A HREF = "#string">Strings</A>  <LI> <A HREF = "#reference">References</A>  <LI> <A HREF = "#function">Functions</A>  </UL><LI> <A HREF = "#cpp">C++ interface</A>  <UL>  <LI> <A HREF = "#table">Table</A>  <LI> <A HREF = "#query">Query</A>  <LI> <A HREF = "#cursor">Cursor</A>  <LI> <A HREF = "#database">Database</A>  </UL><LI> <A HREF = "#cli">CLI - call level interface</A>  <UL>  <LI> <A HREF = "#cli_errors">CLI error codes</A>  <LI> <A HREF = "#cli_types">CLI supported types</A>  <LI> <A HREF = "#cli_open">cli_open</A>  <LI> <A HREF = "#cli_close">cli_close</A>  <LI> <A HREF = "#cli_statement">cli_statement</A>  <LI> <A HREF = "#cli_parameter">cli_parameter</A>  <LI> <A HREF = "#cli_column">cli_colunm</A>  <LI> <A HREF = "#cli_array_column">cli_array_column</A>  <LI> <A HREF = "#cli_fetch">cli_fetch</A>  <LI> <A HREF = "#cli_insert">cli_insert</A>  <LI> <A HREF = "#cli_get_first">cli_get_first</A>  <LI> <A HREF = "#cli_get_last">cli_get_last</A>  <LI> <A HREF = "#cli_get_next">cli_get_next</A>  <LI> <A HREF = "#cli_get_prev">cli_get_prev</A>  <LI> <A HREF = "#cli_get_oid">cli_get_oid</A>  <LI> <A HREF = "#cli_update">cli_update</A>  <LI> <A HREF = "#cli_remove">cli_remove</A>  <LI> <A HREF = "#cli_free">cli_free</A>  <LI> <A HREF = "#cli_commit">cli_commit</A>  <LI> <A HREF = "#cli_abort">cli_abort</A>  <LI> <A HREF = "#cli_show_tables">cli_show_tables</A>  <LI> <A HREF = "#cli_describe">cli_describe</A>  <LI> <A HREF = "#cli_create_table">cli_create_table</A>  <LI> <A HREF = "#cli_alter_table">cli_alter_table</A>  <LI> <A HREF = "#cli_drop_table">cli_drop_table</A>  <LI> <A HREF = "#cli_alter_index">cli_alter_index</A>  <LI> <A HREF = "#cli_freeze">cli_freeze</A>  <LI> <A HREF = "#cli_unfreeze">cli_unfreeze</A>  <LI> <A HREF = "#cli_seek">cli_seek</A>  <LI> <A HREF = "#cli_skip">cli_skip</A>  </UL><LI> <A HREF = "#localcli">Local implementation of CLI</A>  <UL>  <LI> <A HREF = "#cli_create">cli_create</A>  <LI> <A HREF = "#cli_create_replication_node">cli_create_replication_node</A>  <LI> <A HREF = "#cli_attach">cli_attach</A>  <LI> <A HREF = "#cli_detach">cli_detach</A>  <LI> <A HREF = "#cli_get_database_state">cli_get_database_state</A>  <LI> <A HREF = "#cli_prepare_query">cli_prepare_query</A>  <LI> <A HREF = "#cli_execute_query">cli_execute_query</A>  <LI> <A HREF = "#cli_insert_struct">cli_insert_struct</A>  </UL><LI> <A HREF = "#advanced">Delayed transactions and online backup scheduler</A><LI> <A HREF = "#replication">Fault tolerant support</A><LI> <A HREF = "#optimization">Query optimization</A>  <UL>  <LI> <A HREF = "#indices">Using indices in queries</A>  <LI> <A HREF = "#inverse">Inverse references</A>  <LI> <A HREF = "#realtime">Realtime issues</A>  <LI> <A HREF = "#par">Parallel query execution</A>  </UL><LI> <A HREF = "#gist">Generalized search tree</A><LI> <A HREF = "#implementation">FastDB implementation issues</A>  <UL>  <LI> <A HREF = "#memory">Memory allocation</A>  <LI> <A HREF = "#transaction">Transactions</A>  <LI> <A HREF = "#recovery">Recovery</A>  <LI> <A HREF = "#hashtable">Hash table</A>  <LI> <A HREF = "#ttree">T-tree</A>  </UL><LI> <A HREF = "#subsql">Interactive SQL</A><LI> <A HREF = "#www">API for development Web applications</A><LI> <A HREF = "#examples">Examples of FastDB applications</A>  <UL>  <LI> <A HREF = "#guess">Example: game "Guess an animal"</A>  <LI> <A HREF = "#testdb">Example: various types of queries</A>  <LI> <A HREF = "#testperf">Performance test</A>  <LI> <A HREF = "#bugdb">Bug tracking database</A>  <LI> <A HREF = "#clidb">Clients-Managers database</A>  </UL><LI> <A HREF = "#quick">Quick start</A><LI> <A HREF = "#dbsize">Reducing initial size of the database file</A><LI> <A HREF = "#diskless">Diskless configuration</A><LI> <A HREF = "#sharing">Sharing of classes between different databases</A><LI> <A HREF = "docs/html/index.html">Documentation generated by Doxygen</A><LI> <A HREF = "#distribution">Distribution terms</A></UL><BODY><HR><H2><A NAME = "introduction">Introduction</A></H2>FastDB is a highly efficient main memory database system with realtime capabilities and convenient C++ interface.FastDB doesn't support a client-server architecture and all applicationsusing a FastDB database should run at the same host. FastDB is optimized for applications with dominated read access pattern. High speed of query execution is provided by the elimination of data transfer overhead anda very effective locking implementation. The Database file is mapped to the virtualmemory space of each application working with the database. So the query is executed inthe context of the application, requiring no context switching and data transfer.Synchronization of concurrent database access is implemented in FastDB by means of atomic instructions, adding almost no overhead to query processing. FastDB assumes that the whole database is present in RAM and optimizes the search algorithms and structures according to thisassumption. Moreover, FastDB has no overhead caused by database buffer managementand needs no data transfer between a database file and buffer pool. That is why FastDB will work significantly faster than a traditional database with all data cached in buffers pool.<P>FastDB supports transactions, online backup and automatic recovery after system crash. The transaction commit protocol is based ona shadow root pages algorithm, performing atomic update of the database.Recovery can be done very fast, providing high availability for critical applications. Moreover, the eliminationof transaction logs improves the total system performance and leads to a more effective usage of system resources.<P>FastDB is an application-oriented database. Database tables are constructed usinginformation about application classes. FastDB supports automatic scheme evaluation, allowing you to do changes only in one place - in yourapplication classes. FastDB provides a flexible and convenient interfacefor retrieving data from the database. A SQL-like query language is usedto specify queries. Such post-relational capabilities as non-atomicfields, nested arrays, user-defined types and methods, direct interobject references simplifies the design of database applications and makes them moreefficient.<P>Although FastDB is optimized in the assumption that database as a whole fitsinto the physical memory of the computer, it is also possible to use it with databases,the size of which exceeds the size of the physical memory in the system. In the last case, standard operating system swapping mechanisms will work. But all FastDB search algorithms and structures are optimized under the assumption ofresidence of all data in memory, so the efficiency for swapped out data will not be very high.<P> <H2><A NAME = "sql">Query language</A></H2>FastDB supports a query language with SQL-like syntax. FastDB uses a notation morepopular for object-oriented programming then for a relational database. Table rows are considered as object instances, the table is the class of theseobjects. Unlike SQL, FastDB is oriented on work with objects instead of SQLtuples. So the result of each query execution  is a set of objects of one class. The main differences of the FastDB query language from standard SQL are:<P><OL><LI> There are no joins of several tables and nested subqueries. The query alwaysreturns a set of objects from one table. <LI> Standard C types are used for atomic table columns.<LI> There are no NULL values, except null references. I completely agree with C.J. Date's criticism of three-value logic and his proposal to use default values instead. <LI> Structures and arrays can be used as record components. A special <B>exists</B> quantor is provided for locating elements in arrays. <LI> Parameterless user methods can be defined for table records (objects) as well asfor record components.<LI> User functions with (only) one single string or numeric argument can be defined bythe application. <LI> References between objects are supported including automatic supportfor inverse references. <LI>Construction of <code>start from follow by</code> performs a recursive recordstraversal using references.<LI> Because the query language is deeply integrated into C++ classes, a casesensitive mode is used for language identifiers as well as for keywords. <LI> No implicit conversion of integer and floating types to stringrepresentation is done. If such conversion is needed, it must be done explicitly. </OL><P>The following rules in BNF-like notation specify the grammar of theFastDB query language search predicates:<P><TABLE BORDER ALIGN="center"><CAPTION>Grammar conventions</CAPTION><TR><TH>Example</TH><TH>Meaning</TH></TR><TR><TD><I>expression</I></TD><TD>non-terminals</TD></TR><TR><TD><B>not</B></TD><TD>terminals</TD></TR><TR><TD ALIGN="center">|</TD><TD>disjoint alternatives</TD></TR><TR><TD>(<B>not</B>)</TD><TD>optional part</TD></TR><TR><TD>{<B>1</B>..<B>9</B>}</TD><TD>repeat zero or more times</TD></TR></TABLE><P><PRE><I>select-condition</I> ::= ( <I>expression</I> ) ( <I>traverse</I> ) ( <I>order</I> )<I>expression</I> ::= <I>disjunction</I><I>disjunction</I> ::= <I>conjunction</I>         | <I>conjunction</I> <B>or</B> <I>disjunction</I><I>conjunction</I> ::= <I>comparison</I>         | <I>comparison</I> <B>and</B> <I>conjunction</I><I>comparison</I> ::= <I>operand</I> <B>=</B> <I>operand</I>         | <I>operand</I> <B>!=</B> <I>operand</I>         | <I>operand</I> <B>&lt;&gt;</B> <I>operand</I>         | <I>operand</I> <B>&lt;</B> <I>operand</I>         | <I>operand</I> <B>&lt;=</B> <I>operand</I>         | <I>operand</I> <B>&gt;</B> <I>operand</I>         | <I>operand</I> <B>&gt;=</B> <I>operand</I>         | <I>operand</I> (<B>not</B>) <B>like</B> <I>operand</I>         | <I>operand</I> (<B>not</B>) <B>like</B> <I>operand</I> <B>escape</B> <I>string</I>        | <I>operand</I> (<B>not</B>) <B>in</B> <I>operand</I>        | <I>operand</I> (<B>not</B>) <B>in</B> <I>expressions-list</I>        | <I>operand</I> (<B>not</B>) <B>between</B> <I>operand</I> <B>and</B> <I>operand</I>	| <I>operand</I> <B>is</B> (<B>not</B>) <B>null</B><I>operand</I> ::= <I>addition</I><I>additions</I> ::= <I>multiplication</I>         | <I>addition</I> <B>+</B>  <I>multiplication</I>        | <I>addition</I> <B>||</B> <I>multiplication</I>        | <I>addition</I> <B>-</B>  <I>multiplication</I><I>multiplication</I> ::= <I>power</I>         | <I>multiplication</I> <B>*</B> <I>power</I>        | <I>multiplication</I> <B>/</B> <I>power</I><I>power</I> ::= <I>term</I>        | <I>term</I> <B>^</B> <I>power</I><I>term</I> ::= <I>identifier</I> | <I>number</I> | <I>string</I>         | <B>true</B> | <B>false</B> | <B>null</B> 	| <B>current</B> | <B>first</B> | <B>last</B>	| <B>(</B> expression <B>)</B>         | <B>not</B> <I>comparison</I>	| <B>-</B> term	| <I>term</I> <B>[</B> expression <B>]</B> 	| <I>identifier</I> <B>.</B> <I>term</I> 	| <I>function</I> <I>term</I>        | <B>exists</B> <I>identifier</I> <B>:</B> <I>term</I><I>function</I> ::= <B>abs</B> | <B>length</B> | <B>lower</B> | <B>upper</B>        | <B>integer</B> | <B>real</B> | <B>string</B> | <I>user-function</I><I>string</I> ::= <B>'</B> { { <I>any-character-except-quote</I> } (<B>''</B>) } <B>'</B><I>expressions-list</I> ::= <B>(</B> <I>expression</I> { <B>,</B> <I>expression</I> } <B>)</B><I>order</I> ::= <B>order by</B> <I>sort-list</I><I>sort-list</I> ::= <I>field-order</I> { <B>,</B> <I>field-order</I> }<I>field-order</I> ::= [<B>length</B>] <I>field</I> (<B>asc</B> | <B>desc</B>)<I>field</I> ::= <I>identifier</I> { <B>.</B> <I>identifier</I> }<I>traverse</I> ::= <B>start from</B> <I>field</I> ( <B>follow by</B> <I>fields-list</I> )<I>fields-list</I> ::=  <I>field</I> { <B>,</B> <I>field</I> }<I>user-function</I> ::= <I>identifier</I></PRE><P>Identifiers are case sensitive, begin with a  a-z, A-Z, '_' or '$' character, contain only a-z, A-Z, 0-9, '_' or '$' characters, anddo not duplicate a SQL reserved word.<P><TABLE WIDTH=100%><CAPTION>List of reserved words</CAPTION><TR><TD>abs</TD><TD>and</TD><TD>asc</TD><TD>between</TD><TD>by</TD></TR><TR><TD>current</TD><TD>desc</TD><TD>escape</TD><TD>exists</TD><TD>false</TD></TR><TR><TD>first</TD><TD>follow</TD><TD>from</TD><TD>in</TD><TD>integer</TD></TR><TR><TD>is</TD><TD>length</TD><TD>like</TD><TD>last</TD><TD>lower</TD></TR><TR><TD>not</TD><TD>null</TD><TD>or</TD><TD>real</TD><TD>start</TD></TR><TR><TD>string</TD><TD>true</TD><TD>upper</TD></TR></TABLE><P>ANSI-standard comments may also be used. All characters after a double-hyphen up tothe end of the line are ignored.<P>FastDB extends ANSI standard SQL operations by supporting bit manipulation operations. Operators <code>and</code>/<code>or</code> can be applied not only to boolean operands but also to operands of integer type. The result of applying the<code>and</code>/<code>or</code> operator to integer operands is an integervalue with bits set by the bit-AND/bit-OR operation. Bit operations can be usedfor efficient implementation of small sets. Also the rasing to a poweroperation (x<B>^</B>y) is supported by FastDB for integer and floating pointtypes.<P> <H3><A NAME = "structure">Structures</A></H3>FastDB accepts structures as components of records. Fields of the structurecan be accessed using the standard dot notation: <code>company.address.city</code><P>Structure fields can be indexed and used in an <code>order by</code> specification. Structures can contain other structures as their components;there are no limitations on the nesting level.<P>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成a人亚洲精品| 欧美综合久久久| 一本大道av伊人久久综合| 日韩一区二区三区av| 亚洲视频一二三区| 狠狠v欧美v日韩v亚洲ⅴ| 欧美调教femdomvk| 国产精品久久99| 国产精品资源在线观看| 这里是久久伊人| 亚洲免费观看高清| 成+人+亚洲+综合天堂| 欧美精品一区二区三区蜜桃视频| 亚洲综合免费观看高清完整版 | 亚洲欧美另类综合偷拍| 国产一区二区三区在线观看精品 | 91丝袜高跟美女视频| 欧美精品一区二区在线播放| 首页欧美精品中文字幕| 欧美专区日韩专区| 亚洲精品美国一| 99久久精品情趣| 中文字幕日韩欧美一区二区三区| 激情五月激情综合网| 日韩欧美黄色影院| 男男成人高潮片免费网站| 555夜色666亚洲国产免| 亚洲va在线va天堂| 欧美日韩一区二区三区高清 | 亚洲人成影院在线观看| 91在线你懂得| 亚洲在线一区二区三区| 91看片淫黄大片一级| 亚洲欧美偷拍卡通变态| 在线观看三级视频欧美| 亚洲成a人片在线观看中文| 欧美精品xxxxbbbb| 秋霞影院一区二区| 欧美不卡一区二区三区四区| 精品系列免费在线观看| 久久精品一区四区| 99在线精品观看| 一个色妞综合视频在线观看| 欧美日韩亚洲综合| 久久精品国产99久久6| 久久色.com| 菠萝蜜视频在线观看一区| 亚洲免费观看高清在线观看| 欧美日韩亚洲综合一区 | 不卡一二三区首页| 亚洲资源中文字幕| 精品日韩在线观看| 成人性生交大片免费看视频在线 | 色悠悠久久综合| 日本在线不卡一区| 久久精品欧美一区二区三区不卡| 不卡视频免费播放| 偷窥少妇高潮呻吟av久久免费| 日韩视频123| 不卡影院免费观看| 丝袜美腿亚洲一区| 国产精品丝袜在线| 91精品国产色综合久久不卡电影| 久久国产精品72免费观看| 国产精品久久久久久久久晋中 | 亚洲成人自拍偷拍| 久久久久97国产精华液好用吗| 成人动漫一区二区在线| 亚洲.国产.中文慕字在线| 欧美电影免费提供在线观看| 9i看片成人免费高清| 日本免费在线视频不卡一不卡二| 国产亚洲一区二区三区| 欧美日本在线播放| 成人18视频在线播放| 久久精品久久综合| 亚洲一区二区三区四区五区黄 | 精品国产免费人成电影在线观看四季| 国产aⅴ综合色| 青青草国产精品97视觉盛宴 | 日韩美女一区二区三区| 在线观看91视频| 国产麻豆视频精品| 天天综合日日夜夜精品| 亚洲精品美国一| 国产精品天天看| 欧美精品一区二区三区久久久| 在线看国产一区二区| 成人免费视频一区二区| 国产麻豆精品久久一二三| 日韩精品一级二级| 亚洲国产另类精品专区| 国产精品乱码人人做人人爱| 精品少妇一区二区三区在线视频 | 日韩中文字幕1| 亚洲综合小说图片| 亚洲精品成人精品456| 国产精品麻豆久久久| 久久精品一二三| 久久九九99视频| 久久综合久久综合久久综合| 欧美一区二区三区免费观看视频| 色香色香欲天天天影视综合网| 成人毛片在线观看| 成人一区二区三区中文字幕| 国产在线精品一区二区三区不卡| 毛片不卡一区二区| 麻豆视频一区二区| 免费精品视频最新在线| 美女国产一区二区三区| 久久99深爱久久99精品| 久久99国产精品免费| 国产自产高清不卡| 国产成人免费视频网站高清观看视频| 另类调教123区| 久久超碰97人人做人人爱| 久久国产视频网| 国产成都精品91一区二区三| 国产激情一区二区三区| www.欧美色图| 91免费小视频| 欧美三级在线视频| 欧美精品tushy高清| 日韩精品一区在线观看| 久久午夜免费电影| 国产精品乱码久久久久久| 亚洲免费视频成人| 亚洲成人综合视频| 久久国产生活片100| 成人性色生活片| 色视频欧美一区二区三区| 欧美日韩中字一区| 欧美mv日韩mv亚洲| 国产精品高潮呻吟久久| 一区二区三区四区在线播放| 婷婷综合另类小说色区| 国内精品写真在线观看| av一二三不卡影片| 欧美高清视频不卡网| 久久人人爽人人爽| 亚洲香肠在线观看| 久久99精品国产麻豆婷婷| 不卡的av电影| 欧美一区2区视频在线观看| 久久免费看少妇高潮| 亚洲欧美日韩久久精品| 免费看日韩a级影片| 成人精品亚洲人成在线| 欧美日韩一区 二区 三区 久久精品| 欧美一区二区三区视频在线 | 日本三级韩国三级欧美三级| 国产精品一区二区久久精品爱涩| 91丨九色丨黑人外教| 日韩欧美国产午夜精品| 国产精品动漫网站| 免费观看91视频大全| 91亚洲大成网污www| 精品久久久久久久久久久久久久久 | 最新不卡av在线| 免费在线观看日韩欧美| 91一区二区三区在线观看| 精品国产一区二区三区不卡| 亚洲一区二区美女| k8久久久一区二区三区| 欧美xxxx在线观看| 亚洲在线免费播放| av亚洲产国偷v产偷v自拍| 精品久久久久久无| 日韩电影在线免费| 色综合天天综合网天天看片| 久久欧美一区二区| 日本不卡一区二区| 精品视频123区在线观看| 中文字幕视频一区二区三区久| 精品一区二区在线观看| 欧美一区二区三区在线观看| 亚洲一区二区三区精品在线| jizzjizzjizz欧美| 国产色综合久久| 经典三级在线一区| 欧美一区二区精品久久911| 亚洲一区免费在线观看| 日本久久电影网| 亚洲丝袜制服诱惑| 成人精品在线视频观看| 日本一区二区高清| 粉嫩在线一区二区三区视频| 久久久综合视频| 国产一区三区三区| 国产视频一区在线播放| 国产剧情一区在线| 久久色在线观看| 国产成人精品综合在线观看| 2021中文字幕一区亚洲| 精品一区二区三区欧美| 26uuu国产一区二区三区| 精品在线播放免费| 久久九九国产精品| 成人一级黄色片| 亚洲欧洲av在线|