Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper 5.2 . Technical Reference - <b>dbopeninfo</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 DBOPENINFO
 Information about a data store (table) to be opened in the workarea
------------------------------------------------------------------------------
 Structure

     typedef struct
     {
        USHORT area;
        BYTEP  name;
        BYTEP  alias;
        BOOL   shared;
        BOOL   readonly;
     } DBOPENINFO;
     
     typedef DBOPENINFO far * DBOPENINFOP;

 Elements

     area

        Contains a numeric value representing the workarea number where the
        data store will be opened.  This number corresponds directly to the
        CA-Clipper-language level SELECT() area.

     name

        Contains a pointer to a null-terminated string identifying the data
        store.  In most cases, it is a filename.

     alias

        Contains a pointer to a null-terminated string used from the
        CA-Clipper-language level to access the new workarea.  The alias
        element must follow CA-Clipper-level rules for valid symbolic
        references (i.e., a valid CA-Clipper identifier).

     shared

        Contains a boolean value that is set to TRUE if the data store is to
        be opened in a shared (network) mode.

     readonly

        Contains a boolean value that is set to TRUE if the data store is to
        be opened in a read-only mode.

 Files:  Header file is Rdd.api.

 Used by:   create(), open()


See Also: create() open()

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