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

📄 cursor.so

📁 berkeley db 4.6.21的源码。berkeley db是一个简单的数据库管理系统
💻 SO
字号:
m4_comment([$Id: cursor.so,v 10.21 2003/10/18 19:15:52 bostic Exp $])m4_ref_title(Access Methods,    Cursor operations, database @cursors, am/second, am/curget)m4_p([dnlA database cursor refers to a single key/data pair in the database.  Itsupports traversal of the database and is the only way to accessindividual duplicate data items.  Cursors are used for operating oncollections of records, for iterating over a database, and for savinghandles to individual records, so that they can be modified after theyhave been read.])m4_p([dnlThe m4_refT(dbh_cursor) opens a cursor into a database.  Upon return thecursor is uninitialized, cursor positioning occurs as part of the firstcursor operation.])m4_p([dnlOnce a database cursor has been opened, records may be retrieved(m4_ref(dbc_get)), stored (m4_ref(dbc_put)), and deleted(m4_ref(dbc_del)).])m4_p([dnlAdditional operations supported by the cursor handle include duplication(m4_ref(dbc_dup)), equality join (m4_ref(dbh_join)), and a count ofduplicate data items (m4_ref(dbc_count)).  Cursors are eventually closedusing m4_ref(dbc_close).])include(dbc/m4.methods)m4_page_footer

⌨️ 快捷键说明

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