Function : Database

NSFDbClose - Closes a database.
----------------------------------------------------------------------------------------------------------

#include <nsfdb.h>

STATUS LNPUBLIC NSFDbClose(
DBHANDLE hDB);

Description :

This subroutine closes a previously opened database. It is important to close databases when you are through using them, since the close operation flushes data structures to disk and cleans up memory space.
Parameters :

Sample Usage :

/* Normal cleanup */
if (error_status = NSFDbClose(db_handle_src))
 goto Exit;

See Also :

NSFDbOpen
----------------------------------------------------------------------------------------------------------