Function : Database

NSFDbIDGet - Get the database's ID (DBID).
----------------------------------------------------------------------------------------------------------

#include <nsfdb.h>

STATUS LNPUBLIC NSFDbIDGet(
DBHANDLE hDB,
DBID far *retDbID
);

Description :

This function obtains the database's ID or creation time/date. This TIMEDATE structure is NOT normalized to Greenwich Mean Time, so it still contains both the local time zone and the daylight savings time settings for the time zone where the database was created.

Parameters :

Sample Usage :

/* Get the Database IDs */
NSFDbIDGet(db_handle_src, &database_id_src);

See Also :

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