Click or drag to resize

CoreDb.Unlock Method

X#
Release all locks for a work area.

Namespace:  XSharp
Assembly:  XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax
 STATIC METHOD Unlock(
	uRecno AS Object
) AS LOGIC
Request Example View Source

Parameters

uRecno
Type: Object
The ID of the record to be unlocked. To omit, specify NULL_OBJECT. This unlocks all locked records or the whole file.

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE.
Remarks
This function is like DBUnlock().

This function, however, does not call the error handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.

The LastRddError property in the runtimestate will contain needed information about any error that occurs.
See Also