EsbEndUpdate

Marks the end of an update specification being sent to the active database. This function must be called after sending the update specification (using EsbSendString()).

Syntax

EsbEndUpdate (hCtx)
ByVal hCtx As Long
ParameterDescription

hCtx

VB API context handle.

Notes

This function must be preceded by a call to EsbBeginUpdate(), and at least one call to EsbSendString().

Return Value

None.

Access

This function requires callers to have write privilege (ESB_PRIV_WRITE) to the active database.

Example

Declare Function EsbEndUpdate Lib "ESBAPIN" (ByVal hCtx As Long) As Long 

See the example for EsbBeginUpdate.

See Also