📄 open.so
字号:
m4_comment([$Id: open.so,v 10.18 2003/10/18 19:15:53 bostic Exp $])m4_ref_title(Access Methods, Database open, @opening a database, am/ops, am/opensub)m4_p([dnlThe m4_refT(dbh_open) opens a database, and takes five arguments:])m4_tagbeginm4_tag(file, [The name of the file to be opened.])m4_tag(database, [An optional database name.])m4_tag(type, [dnlThe type of database to open. This value will be one of the four accessmethods m4_db supports: DB_BTREE, DB_HASH, DB_QUEUE or DB_RECNO, or thespecial value DB_UNKNOWN, which allows you to open an existing filewithout knowing its type.])m4_tag(mode, [The permissions to give to any created file.])m4_tagendm4_p([dnlThere are a few flags that you can set to customize open:])m4_tagbeginm4_tag([m4_ref(DB_CREATE)], [dnlCreate the underlying database and any necessary physical files.])m4_tag([m4_ref(DB_NOMMAP)], [dnlDo not map this database into process memory.])m4_tag([m4_ref(DB_RDONLY)], [Treat the data base as read-only.])m4_tag([m4_ref(DB_THREAD)], [dnlThe returned handle is free-threaded, that is, it can be usedsimultaneously by multiple threads within the process.])m4_tag([m4_ref(DB_TRUNCATE)], [dnlPhysically truncate the underlying database file, discarding alldatabases it contained. Underlying filesystem primitives are used toimplement this flag. For this reason it is only applicable to thephysical file and cannot be used to discard individual databases fromwithin physical files.])m4_tag([m4_ref(DB_UPGRADE)], [Upgrade the database format as necessary.])m4_tagendm4_page_footer
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -