Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Advantage CA-Clipper Guide v6.11 - ax_isshared() http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 AX_IsShared()
 Returns SHARED status of a table
------------------------------------------------------------------------------

 Syntax

     AX_IsShared() -> logical

 Returns

     Returns a logical .T. if the current or aliased table is open
     in SHARED mode.  If not, an .F. is returned.

 Description

     This function returns the state of the current work area's Shared flag.

 Example

     USE test VIA "DBFNTXAX" SHARED     // Open file in SHARED mode
     ? AX_IsShared()                    // .T.
     CLOSE

     USE test VIA "DBFNTXAX" EXCLUSIVE  // Open file in EXCLUSIVE mode
     ? AX_IsShared()                    // Returns .F.


Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson