DB->get_multiple()

#include <db.h>

int
DB->get_multiple(DB *db);  

This method returns non-zero if the DB handle references a physical file supporting multiple databases, and 0 otherwise.

In this case, the DB handle is a handle on a database whose key values are the names of the databases stored in the physical file and whose data values are opaque objects. No keys or data values may be modified or stored using the database handle.

This method may not be called before the DB->open() method is called.

Class

DB

See Also

Database and Related Methods