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.3 . 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 to be opened in work area
------------------------------------------------------------------------------
 Structure

     typedef struct
     {
        USHORT uiArea;
        BYTEP  abName;
        BYTEP  atomAlias;
        BOOL   fShared;
        BOOL   fReadonly;
        FARP   lpdbHeader;
     } DBOPENINFO;
     
     typedef DBOPENINFO far * LPDBOPENINFO;

 Elements

     uiArea

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

     abName

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

     atomAlias

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

     fShared

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

     fReadonly

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

     lpdbHeader

        Contains a pointer to a header of the data store.

 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