@GetDBModified
Syntax
@GetDBModified(DBHANDLE1);
@GetDBModified(DBHANDLE1;TD1);
Description
Returns when the database with the DBHANDLE DBHANDLE1 was last modified. The return value (TD) contains the last modification of a data document and TD TD1 contains the last modification of a non-data document.
Example: @GetDBModified(DBHANDLE1)
DBHANDLE1:=@OpenDB("TEST.NSF");
@LogReport(@GetDBModified(DBHANDLE1));
DBHANDLE1:=@CloseDB(DBHANDLE1);
The database is opened, the date/time value of the last changes to a data document is output, and then it is closed again.
Example: @GetDBModified(DBHANDLE1,TD1)
DBHANDLE1:=@OpenDB("TEST.NSF");
@LogReport(@GetDBModified(DBHANDLE1;TD1));
@LogReport(TD1);
DBHANDLE1:=@CloseDB(DBHANDLE1);
The database is opened, the two date/time values of the last changes to a data document and a non-data document are output, and then it is closed again.
Note : This text was machine-translated and may contain inaccuracies.
