IsTransactable Function | |
-- todo --
Returns a logical value indicating if a free table or free cursor supports transactions.
Namespace:
XSharp.VFP
Assembly:
XSharp.VFP (in XSharp.VFP.dll) Version: 2.19
Syntax FUNCTION IsTransactable(
uArea
) AS LOGIC CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public static bool IsTransactable(
Usual uArea = default
)
Request Example
View SourceParameters
- uArea (Optional)
- Type: Usual
Specifies the work area of the free table or free cursor for which IsTrancsactable( ) determines if transactions are supported.
Or
Specifies the alias of the table or cursor for which IsTrancsactable( ) determines if transactions are supported.
Return Value
Type:
Logic
Logical. Returns a logical true (.T.) if a free table or free cursor supports transactions,
otherwise a logical false (.F.) is returned.
Remarks
Use the MakeTrancsactable( ) Function to allow a free table or free cursor to support transactions.
See Also