Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Check for Exclusive Open?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00741115
Message ID:
00741187
Views:
23
This is not reliable. Between the FCLOSE() and a USE, someone else could get the table. The ONLY reliable way is to attempt to USE EXCLUSIVE and traps for the error if it can't be opened.

>Hi marvin
>I have a function that handles that you could try this:
>
>FUNCTION EXCL_USED
>* SEE IF YOU CAN GET EXCLUSIVE ACCESS TO THE FILE
>
>LPARAMETERS file_name
>
>temp_handle=FOPEN(file_name+'.dbf',2)
>DO CASE
>	CASE temp_handle=-1
>		RETURN .F.
>	OTHERWISE
>		FCLOSE(temp_handle)
>		RETURN .T.
>ENDCASE
>
>hth
Craig Berntson
MCSD, Microsoft .Net MVP, Grape City Community Influencer
Previous
Reply
Map
View

Click here to load this message in the networking platform