xref: /csrg-svn/lib/libc/db/test/README (revision 56555)
1*56555Sbostic#	@(#)README	5.5 (Berkeley) 10/13/92
256037Sbostic
356037SbosticThe script file consists of lines with a initial character which is
456037Sbosticthe "command" for that line.  Legal characters are as follows:
556037Sbostic
656553Sbosticc: compare a record
756553Sbostic	+ must be followed by [kK][dD]; the data value in the database
856553Sbostic	  associated with the specified key is compared to the specified
956553Sbostic	  data value.
1056057Sbostice: echo a string
11*56555Sbostic	+ writes out the rest of the line into the output file; if the
12*56555Sbostic	  last character is not a carriage-return, a newline is appended.
1356037Sbosticg: do a get command
1456037Sbostic	+ must be followed by [kK]
1556037Sbostic	+ writes out the retrieved data DBT.
1656037Sbosticp: do a put command
1756037Sbostic	+ must be followed by [kK][dD]
1856037Sbosticr: do a del command
1956037Sbostic	+ must be followed by [kK]
2056037Sbostics: do a seq command
2156057Sbostic	+ writes out the retrieved data DBT.
2256037Sbosticf: set the flags for the next command
2356037Sbostic	+ no value zero's the flags
2456037SbosticD [file]: data file
2556037Sbostic	+ set the current data value to the contents of the file
2656037Sbosticd [data]:
2756037Sbostic	+ set the current key value to the contents of the line.
2856037SbosticK [file]: key file
2956037Sbostic	+ set the current key value to the contents of the file
3056037Sbostick [data]:
3156037Sbostic	+ set the current key value to the contents of the line.
3256037Sbostic
3356037SbosticOptions to dbtest are as follows:
3456037Sbostic
3556037Sbostic	-i: Use the rest of the argument to set elements in the info
3656037Sbostic	    structure.  If the type is btree, then "-i cachesize=10240"
3756037Sbostic	    will set BTREEINFO.cachesize to 10240.
3856037Sbostic	-o: The rest of the argument is the output file instead of
3956037Sbostic	    using stdout.
4056488Sbostic
4156488SbosticDbtest requires two arguments, the type of access "hash", "recno" or
4256488Sbostic"btree", and the script name.
43