DB->set_lorder |
#include <db.h>int DB->set_lorder(DB *db, int lorder);
Set the byte order for integers in the stored database metadata. The number should represent the order as an integer; for example, big endian order is the value 4,321, and little endian order is the value 1,234. If lorder is not explicitly set, the host order of the machine where the Berkeley DB library was compiled is used.
The value of lorder is ignored except when databases are being created. If a database already exists, the byte order it uses is determined when the database is opened.
The access methods provide no guarantees about the byte ordering of the application data stored in the database, and applications are responsible for maintaining any necessary ordering.
The DB->set_lorder interface may be used only to configure Berkeley DB before the DB->open interface is called.
The DB->set_lorder function returns a non-zero error value on failure and 0 on success.
The DB->set_lorder function may fail and return a non-zero error for the following conditions:
Called after DB->open was called.
The DB->set_lorder function may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions. If a catastrophic error has occurred, the DB->set_lorder function may fail and return DB_RUNRECOVERY, in which case all subsequent Berkeley DB calls will fail in the same way.