Xbasic

DatabaseEnd Function

Syntax

DatabaseEnd(Context as P, Action as C)

Arguments

ContextPointer

The object on which the function is called (generally a DatabaseSnapshot object)

ActionCharacter

The action being performed. Will be one of the following values: Load, Store, LoadDBF, or StoreDBF.

Description

Called at the end of processing for a database level update.

Example

FUNCTION DatabaseEnd(Context as P, Action as C, TablesExpected as N)
    Statusbar.Set_Text("Database " + Action + " complete.") 
END FUNCTION