⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtree.help

📁 fastdb-241源码
💻 HELP
字号:
This is a test program for the Generalized Search Tree (GiST), as
described by Hellerstein, Naughton & Pfeffer in Proceedings of the
21st International Conference on Very Large Database Systems.

The following commands are understood:

create rtree foo         Creates and opens a new r-tree named foo

open rtree foo           Opens an existing r-tree foo

close foo                Closes the rtree foo

drop x                   Drops (deletes) the table foo

select from foo          Selects (displays) all entries in foo

select from foo where key <op> (<xlo>, <xhi>, <ylo>, <yhi>) 
                         Selects entries in foo based on comparison with
			 a bounding box.  The comparison operators
                         that can be used in place of <op> are =
                         (equals), & (overlaps), < (contained-in), and
                         > (contains).  The four coordinates of 
                         the key are (xlow, xhigh, ylow, yhigh) of the
                         query box, which are all of type double.

insert foo ((0,1.2,0,1), 4)   Inserts a new entry with key (0,1.2,0,1), 
                         pointer 4 into table foo.  

delete foo ((0,0,0,0), 4)   deletes an entry with key (0,0,0,0), pointer 4
                         from table foo

debug                    Activate debugging output

help                     Display this screen

dump foo                 Dump tree foo to the screen. 

quit                     Quit the program

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -