SynopsisCloses an open database. Prototype#include "emfdb.h" void dbClose(int did); Parameters
DescriptionClose the DB by freeing all allocated structures. Return ValueNo return value. Examplestatic int testDbClose() { int dbid; dbid = dbGetId(DATABASE); harnessTesting(T("dbClose")); dbClose(dbid); ... } See Also
|