|
|
Db::get_type |
#include <db_cxx.h>int Db::get_type(DBTYPE *type);
The Db::get_type method returns the type of the underlying access method (and file format). The type value is one of DB_BTREE, DB_HASH, DB_RECNO, or DB_QUEUE. This value may be used to determine the type of the database after a return from Db::open with the type parameter set to DB_UNKNOWN.
The Db::get_type method may not be called before the Db::open method has been called.
The Db::get_type method either returns a non-zero error value or throws an exception that encapsulates a non-zero error value on failure, and returns 0 on success.
The Db::get_type method may fail and throw DbException, encapsulating one of the following non-zero errors, or return one of the following non-zero errors:
Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.