|
-
NAMEdbh_set_size, dbh_set_recordsize - set maximum or current record sizeSYNOPSIS#include <dbh.h>int dbh_set_size (DBHashTable *dbh,
FILE_POINTERsize);
DESCRIPTIONFunction dbh_set_size defines the maximum amount of memory to be allocated to the DBHashTable records. This is nonvolatile information which need to be set only once. The default is 1024 bytes.Function dbh_set_recordsize sets the recordsize of the the data in the current DBHashTable and is called implicitly by calling dbh_set_data It is very important to call this function if dbh_set_data is not used. Unpredictable results will follow if record_size is not set. DBHashTable records are variable in length, so use this function at least once if you are planning to use fixed length records. Parameter record_size is the amount of bytes to be reserved for the current DBHashTable record data. RETURN VALUEdbh_set_size returns 0 on error, 1 otherwise.dbh_set_recordsize returns the amount of bytes in the current DBHashTable record. SEE ALSOdbh (0), dbh_update (3), dbh_writeheader (3), dbh_set_data (3), dbh_set_key (3)AuthorEdscott Wilson Garcia <edscott@xfce.org>
Visit the GSP FreeBSD Man Page Interface. |