File: LIST

package info (click to toggle)
db5.3 5.3.28%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 158,500 kB
  • sloc: ansic: 448,411; java: 111,824; tcl: 80,544; sh: 44,264; cs: 33,697; cpp: 21,604; perl: 14,557; xml: 10,799; makefile: 4,077; javascript: 1,998; yacc: 1,003; awk: 965; sql: 801; erlang: 342; python: 216; php: 24; asm: 14
file content (101 lines) | stat: -rw-r--r-- 1,740 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Test list:

b_curalloc
	Cursor allocation

	usage: b_curalloc [-c count]

	-c	Cursor count

b_curwalk
	Walk a cursor through N records

	usage: b_curwalk [-pSs] [-C cachesz]
	    [-c cnt] [-d dupcnt] [-P pagesz] [-t type] [-w walkcnt]
	-C	Cache size
	-c	Record count
	-d	Duplicate record count
	-P	Page size
	-p	Walk backward instead of forward
	-S	Skip duplicates
	-s	Sort duplicates
	-t	Database type (B | H | Q | R)

b_del
	Delete records

	usage: b_del [-w] [-C cachesz] [-c count] [-t type]

	-C	Cache size
	-c	Record count
	-t	Database type (B | H | Q | R)
	-w	Delete through cursor

b_get
	Read records

	usage: b_get [-C cachesz] [-c count] [-t type]

	-C	Cache size
	-c	Record count
	-t	Database type (B | H | Q | R)

b_load
	Insert records

	usage: b_load [-d] [-C cachesz] [-c count] [-t type]

	-C	Cache size
	-c	Record count
	-d	Use duplicate records
	-t	Database type (B | H | Q | R)

b_open
	Database open/close

	usage: b_open [-df] [-c count] [-t type]

	-d	Open/close a subdatabase
	-f	Open/close a physical file
	-c	Open/close count
	-t	Database type (B | H | Q | R)

b_put
	Overwrite record 

	usage: b_put [-C cachesz]
	    [-c count] [-d bytes] [-s secondaries] [-t type]

	-C	Cache size
	-c	Record count
	-d	Data size
	-s	Number of secondaries
	-t	Database type (B | H | Q | R)

b_recover
	Run recovery

	usage: b_recover [-C cachesz] [-c count]

	-C	Cache size
	-c	Transactions to recover

b_txn
	Abort or commit a transaction containing no operations

	usage: b_txn [-a] [-c count]

	-a	Abort rather than commit
	-c	Transaction count

b_txn_write
	Write/commit transaction

	usage: b_txn_write [-arw] [-c count]

	-a	nosync
	-c	Transaction count
	-r	Configure replication stub callback
	-w	write-nosync

b_workload