home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a011 / 2.ddi / INTRFACE.DOC < prev    next >
Encoding:
Text File  |  1990-05-24  |  38.3 KB  |  1,100 lines

  1. May 1990
  2. Btrieve DOS v5.10
  3.  
  4. *************************** NEW INTERFACES **************************
  5. BASIC:
  6.  BC7RBTRV.OBJ, BC7XBTRV.ASM  Microsoft BASIC v7.0
  7.  
  8.  QB6PBTRV.OBJ             Microsoft BASIC v6.0;
  9.                  Microsoft QuickBasic v4.0, v6.0
  10.                  IBM BASIC v1.0, v2.0, v3.0
  11.                  IBM BASIC/2 for OS/2
  12.  
  13.  
  14. C:
  15.  *C2XBTRV.C             IBM C/2 for OS/2
  16.  C2FXBTRV.C             IBM C/2 for OS/2(family application)
  17.  LCXBTRV3.C             Lattice C v3.0
  18.  WAT2BTRV.C             WATCOM C
  19.  
  20.  
  21. COBOL:
  22.  COBPBTRV.OBJ             Micro Focus COBOL/2
  23.                  Microsoft v3.0
  24.  RM8XBTRV.EXE             RM/COBOL-8X
  25.  
  26.  
  27. PASCAL:
  28.  TUR5BTRV.PAS             Borland Turbo Pascal v5.0
  29.  
  30.  * Not distributed with Btrieve v5.1 for DOS
  31.  
  32.  
  33. ************************ UPDATED INTERFACES *************************
  34. The code for these interfaces has been updated.  The documentation is
  35. located with the other interface documentation for that language.
  36.  
  37. BASIC:
  38.  QB6RBTRV.OBJ  Microsoft BASIC v6.0
  39.            Microsoft QuickBasic v4.0, v6.0
  40.            IBM BASIC v1.0, v2.0, v3.0
  41.            IBM BASIC/2 for OS/2
  42.    See "NEW INTERFACE WITH THIS RELEASE/QB6PBTRV.OBJ" section
  43.  
  44. COBOL:
  45.  COBRBTRV.OBJ  Micro Focus COBOL/2
  46.            Microsoft v3.0
  47.            Realia COBOL
  48.    See "NEW INTERFACE WITH THIS RELEASE/COBPBTRV.OBJ" section
  49.  
  50.  Note: We changed the name of RCOBBTRV.OBJ(Btrieve v5.0 and Btrieve v5.1 VAP)
  51.        to COBRBTRV.OBJ for this release because of the naming convention
  52.        adopted for all Btrieve interfaces.
  53.  
  54.  COBXBTRV.OBJ  Microsoft COBOL
  55.    See Appendix E of Btrieve Programmer's Manual
  56.  
  57.  RMXBTRV.EXE   RM COBOL
  58.  
  59.  
  60. PASCAL:
  61.  TUR4BTRV.PAS  Borland Turbo Pascal v4.0
  62.  
  63.  
  64. ************************* CURRENT INTERFACES ************************
  65. BASIC:
  66.  BASIC interface for the TI
  67.  Borland Turbo Basic
  68.  Digital Research CBASIC (CB-86)
  69.  Generic BASIC
  70.  Microsoft QuickBasic v3.0
  71.  Notes on Microsoft QuickBasic v4.0
  72.  
  73. C:
  74.  Ci-C86
  75.  DeSmet C
  76.  Lattice C
  77.  Mark Williams C
  78.  Turbo C
  79.  
  80. COBOL:
  81.  MBP COBOL-85
  82.  MBP COBOL
  83.  Micro Focus COBOL/2
  84.  Micro Focus COBOL
  85.  Realia COBOL
  86.  RM COBOL
  87.  
  88. FORTRAN:
  89.  Microsoft Fortran
  90.  
  91. MODULA:
  92.  Logitech Modula-2/86
  93.  
  94. PASCAL:
  95.  Borland Turbo Pascal
  96.  Metaware Pascal
  97.  SBB Pascal
  98.  
  99.  
  100. *********************************************************************
  101. HOW TO USE THE NOTES ON INTERFACES:
  102.  
  103.        This document describes interfaces for languages and
  104.        implementations of languages not included in the manual.
  105.        The descriptions here should be used in addition to the
  106.        information in the manual.
  107.  
  108.        For example, to use Metaware Pascal, read the "Interfacing
  109.        Btrieve with Pascal" section of Appendix D in the Btrieve
  110.        Programmer's Manual then refer to this document for
  111.        differences between the Microsoft Pascal implementations
  112.        described in the manual and Metaware Pascal.
  113. =====================================================================
  114.  
  115.            NEW INTERFACES WITH THIS RELEASE
  116.  
  117. ---------------------------------------------------------------------
  118. Microsoft Basic v7.0
  119.  
  120. File: BC7RBTRV.OBJ (DOS or OS/2 Real mode interface)
  121.       BC7XBTRV.ASM (Source file)
  122.  
  123.  
  124.   Calling Procedure from Microsoft Basic v7.0
  125.  
  126.        BTRVFAR(Op%,Status%,PosBlk$,VARPTR(DataBuf),VARSEG(DataBuf),
  127.            DLen%,KeyBuf$,KeyNum%)
  128.  
  129.        or
  130.  
  131.        BTRVFAR(Op%,Status%,PosBlk$,SADD(DataBuf$),SSEG(DataBuf$),
  132.            DLen%,KeyBuf$,KeyNum%)
  133.  
  134.    Note:
  135.  
  136.        1. Use VARPTR/VARSEG pair if DataBuf parameter is defined using
  137.       the record method. (Ex. Defined as TYPE --- END TYPE)
  138.  
  139.        2. USE SADD/SSEG pair if DataBuf parameter is defined using
  140.       the field method. (Ex. Defined using Field statement).
  141.  
  142.        3. Don't pass a fixed-length string as any of Btrieve parameters since
  143.       BASIC's sending and receiving parameters can only be variable-length
  144.       string (Microsoft Basic v7.0 Programmer's Guide p.489).
  145.  
  146.        Example:
  147.  
  148.        A is variable-length string:
  149.  
  150.         A$ = "valiable length string"
  151.  
  152.        A is fixed-length string:
  153.  
  154.         DIM A AS STRING * 10
  155.  
  156.        For more information about Variable- and Fixed- length strings,
  157.        please see Microsoft Basic v7.0 Programmer's Guide p.135.
  158.  
  159.        4. OS.INC is needed for assembling BC7XBTRV.ASM. Set the value
  160.       in OS.INC according to your environment.
  161.  
  162. ---------------------------------------------------------------------
  163. Microsoft BASIC v6.0
  164. Microsoft QuickBasic v4.0, v6.0
  165. IBM BASIC v1.0, v2.0, v3.0
  166. IBM BASIC/2 for OS/2
  167.  
  168. Files: QB6RBTRV.OBJ (DOS or OS/2 Real mode interface)           ==> UPDATED
  169.        QB6PBTRV.OBJ (OS/2 Protect mode interface)
  170.  
  171.  
  172.  
  173.     These interfaces are for Basic programs that need to use both near
  174.     and far pointers.
  175.  
  176.     This interface supports two different calls to Btrieve in
  177.     one interface.    If you are accessing NEAR (16-bit data buffer
  178.     pointers) then use the BTRV call with 7 parameters; if you are
  179.     accessing FAR (32-bit data buffer pointers) then use the BTRVFAR
  180.     call with 8 parameters.
  181.  
  182.     If you are using the OS/2 requester, the interface QB6PBTRV.OBJ
  183.     must be linked with the application as well as the static library
  184.     BTRCALLS.LIB.  The Btrieve dynamically linked library should be in
  185.     a directory specified in your LIBPATH environmental variable.
  186.     This interface module is not a family application.  It runs
  187.     in protected mode only.
  188.  
  189.     If you are writing a DOS application, the interface QB6RBTRV.OBJ
  190.     must be linked with the application.  You do NOT need BTRCALLS.LIB.
  191.  
  192.     To call the interfaces, the format is the same for QB6RBTRV
  193.     and QB6PBTRV.
  194.  
  195.     For near data buffer pointers:
  196.  
  197.       BTRV (op%, Status%, PosBlk$, VARPTR (dBuf(1)),_
  198.            dlen%, KeyBuf$, KeyNum%)
  199.  
  200.     For far data buffer pointers:
  201.  
  202.       BTRVFAR (op%, Status%, PosBlk$, VARPTR (dBuf(1)),VARSEG (dBuf(1)),_
  203.            dlen%, KeyBuf$, KeyNum%)
  204.  
  205.  
  206.     Note: If an array variable is dimensioned with REDIM, BASIC places
  207.     that array in ITS own data segment creating the need for a "far"
  208.     call. If the array is dimensioned with simply DIM, it is defined
  209.     locally.
  210.  
  211. ---------------------------------------------------------------------
  212. IBM C/2 for OS/2
  213.  
  214. File: *C2XBTRV.C (OS/2)
  215.       C2FXBTRV.C (famliy application)
  216.  
  217.   See C interface section
  218.   * Not distributed with Btrieve v5.1 for DOS
  219.  
  220. ---------------------------------------------------------------------
  221. Lattive C v3.0
  222.  
  223. File: LCXBTRV3.C
  224.  
  225.   See C interface section
  226.  
  227. ---------------------------------------------------------------------
  228. WATCOM C
  229.  
  230. File: WAT2BTRV.C
  231.  
  232.   See C interface section
  233.  
  234. ---------------------------------------------------------------------
  235. Micro Focus COBOL/2
  236. Microsoft COBOL v3.0
  237. Realia COBOL(COBRBTRV.OBJ only)
  238.  
  239. Files: COBRBTRV.OBJ  (DOS or OS/2 Real mode interface)    ==>UPDATED
  240.        COBPBTRV.OBJ  (OS/2 Protect mode interface)
  241.  
  242.        These interfaces are similar to MF2BTRV.OBJ, but it does not
  243.        require the CSUPPORT.OBJ file, nor the C compiler.
  244.        The .OBJ file appropriate to your environment is linked with
  245.        your COBOL program.  In order to use this COBOL interface, compile
  246.        your COBOL program and link it with the .OBJ file.
  247.        Refer to the documentation on MF2BTRV.OBJ for the call to
  248.        Btrieve and the data types that should be used, as they are the same.
  249.  
  250.   NOTE:
  251.        COBRBTRV.OBJ may also be used with Realia COBOL.
  252.  
  253. ---------------------------------------------------------------------
  254. Ryan-McFarland COBOL-8x
  255.  
  256. File: RM8XBTRV.EXE
  257.  
  258.        The interface to RM COBOL-8x is loaded by the COBOL runtime
  259.        during the first call to Btrieve.
  260.  
  261.        Note: Please refer to RM/COBOL interface if you are using
  262.        RM/COBOL (the versions before RM/COBOL-8x).
  263.  
  264.     Calling Procedure from COBOL
  265.  
  266.     CALL "RM8XBTRV.EXE" USING FUNCTION, STATUS, POSITION-BLOCK,
  267.              DATA-RECORD, DATA-LEN, KEY-VALUE, KEY-NUMBER.
  268.           where:
  269.         FUNCTION - function number for request    (COMP-1)
  270.         STATUS - return status from request    (COMP-1)
  271.         POSITION-BLOCK - 128-byte buffer
  272.         DATA-RECORD - User data buffer
  273.         DATA-LEN - Length of data buffer    (COMP-1)
  274.         KEY-VALUE - string pointer to key buffer
  275.         KEY-NUMBER - key number to be processed (COMP-1)
  276.  
  277.      Note: For Create, Status, and Create Supplemental Index,
  278.        the Extended-Key-Type field of Key Specs should be declared
  279.        as follows:
  280.         Ext-Key-Type  COMP-6
  281.  
  282. ---------------------------------------------------------------------
  283. Borland Turbo Pascal v5.0
  284.  
  285. File: TUR5BTRV.PAS (source file)
  286.       TUR5BTRV.TPU (compiled TPU file)
  287.  
  288.       1.TUR5BTRV.PAS is defined as a unit and should be compiled
  289.     as a TPU file.
  290.  
  291.       2.Turbo Pascal v5.0 requires this interface which uses
  292.     the same calling and type conventions as TURXBTRV.PAS.    This
  293.     interface cannot be used with previous versions of Turbo
  294.     Pascal.
  295.  
  296.  
  297. =====================================================================
  298.  
  299.                CURRENT INTERFACES
  300.  
  301. ---------------------------------------------------------------------
  302. BASIC on the TI
  303.  
  304. Files:    BTIXBTRV.OBJ for compiled BASIC and
  305.     BTIXBTRV.EXE for interpretive BASIC on the TI.
  306.  
  307.        Previous documentation on BASIC for the TI incorrectly
  308.        stated that the use of this interface is the same as the
  309.        BASIC described in the manual.  This is not correct.
  310.  
  311.        The interface uses a string variable defined within the
  312.        program, called the position block.  Because the position
  313.        block is a separate variable from the Basic file buffer,
  314.        it must be passed as a separate parameter on the Btrieve
  315.        call.  The format for the Btrieve call is:
  316.  
  317.       call BTRV(op%,stat%,posblk$,fileptr%,dbuflen%,keybuf$,keynum%)
  318.        where:
  319.      op% = Btrieve operation number
  320.      stat% = Btrieve status return
  321.      posblk$ = Btrieve position block
  322.      fileptr% = varptr value to file buffer
  323.      dbuflen% = data buffer length
  324.      keybuf$ = key buffer
  325.      keynum% = file index path number
  326.  
  327.        The position block variable, posblk$, is placed in the
  328.        parameter list ahead of the file pointer.  The following
  329.        is a list of do's and don't's for using the position
  330.        block.
  331.  
  332.        1.  Create a unique position block for each Btrieve file
  333.        you open.
  334.  
  335.        2.  Initialize each position block to 128 spaces.
  336.  
  337.        3.  Never write to the position block once you have
  338.        initialized it to 128 spaces.
  339.  
  340.        4.  Be sure to pass the correct position block for the
  341.        file you are accessing on the Btrieve call.  Failure to do
  342.        so may result in corrupted files, or a Btrieve error 2.
  343.  
  344.  
  345. ---------------------------------------------------------------------
  346. Borland Turbo Basic
  347.  
  348. File: TURBBTRV.BAS - for Btrieve v4.0x and above
  349.  
  350.        The interface is written in Turbo Basic; using the
  351.        metastatement $INCLUDE "TURBBTRV.BAS" allows the
  352.        application to access the interface.
  353.  
  354.        This interface has two differences from most BASIC
  355.        interfaces.  First, it uses a separate string variable for
  356.        the position block, instead of using the FCB within the
  357.        file buffer.  Second, the data buffer address is not
  358.        obtained using the fileptr function, but the first field
  359.        of the field statement of the file is sent.
  360.  
  361.        The format for the Btrieve call using the Turbo Basic
  362.        interface is:
  363.  
  364.     CALL BTRV (OP%, STATUS%, POSITION$, FILE$, DATALEN%, KEYBUF$, KEYNUM%)
  365.  
  366.     where:
  367.       OP% - function number for request
  368.       STATUS% - return status from request
  369.       POSITION$ - 128-byte data area for FCB and positioning,
  370.     not to be changed by user
  371.       FILE$ - address of data buffer from FIELD function
  372.       DATALEN% - length of user data buffer
  373.       KEYBUF$ - string pointer to key buffer
  374.       KEYNUM% - key number to be processed
  375.  
  376.  
  377.        The position block variable, POSITION$, has been inserted
  378.        into the parameter list ahead of the data buffer pointer.
  379.        The following is a list of do's and don't's for using the
  380.        position block.
  381.  
  382.        1.  Create a unique position block for each Btrieve file
  383.        you open.
  384.  
  385.        2.  Initialize each position block to 128 spaces.
  386.  
  387.        3.  Never write to the position block once you have
  388.        initialized it to 128 spaces.
  389.  
  390.        4.  Be sure to pass the correct position block for the
  391.        file you are accessing on the Btrieve call.  Failure to do
  392.        so may result in corrupted files, or a Btrieve error 2.
  393.  
  394.        It is important to keep the position blocks for the files
  395.        distinct from each other.  Btrieve will sometimes write
  396.        back to the position block variable, and use that
  397.        information on the next access to that file.
  398.  
  399.        This sample code illustrates how to open a file and get
  400.        the first record by key path 0 using Turbo Basic.  Note
  401.        that the extra fielding statement for FILE1.BUF is not
  402.        necessary, but ensures that the correct field is sent to
  403.        Btrieve.
  404.  
  405.  
  406.        $INCLUDE "TURBBTRV.BAS"
  407.  
  408.        OPEN "NUL" AS #1 LEN = 40
  409.        FIELD #1, 40 AS FILE1.BUF$
  410.        FIELD #1, 5 AS F1.KEY1$, 4 AS F1.KEY2$, 31 AS F1.REST$
  411.        DLEN% = 0
  412.        OP1% = 0
  413.        FileName$ = "example.btr" + CHR$(0)
  414.        POSITION$ = SPACE$ (128)
  415.        LET KEYNUM% = 0
  416.        CALL BTRV (OP1%, STATUS1%, POSITION$, FILE1.BUF$,_
  417.           DLEN%, FileName$, KEYNUM%)
  418.  
  419.        IF (STATUS1% <> 0), THEN
  420.           PRINT "operation is " OP1% "status is" STATUS1%
  421.        END IF
  422.  
  423.        KEYNUM% = 0
  424.        DLEN% = 40
  425.        OP1% = 12
  426.        CALL BTRV (OP1%, STATUS1%, POSITION$, FILE1.BUF$,_
  427.           DLEN%, F1.KEY1$, KEYNUM%)
  428.  
  429.     IMPORTANT NOTES:
  430.        This interface changes the data segment which is used by
  431.        BLOAD, BSAVE, CALL ABSOLUTE, PEEK, and POKE, because it
  432.        does a DEF SEG.    Thus, if these commands are used after a
  433.        call to BTRV, it is important to do a DEF SEG after the
  434.        BTRV call and before using the above statements.
  435.  
  436.        Unlike some BASIC interpreters, Turbo Basic checks that
  437.        the number and type of the arguments to a procedure (such
  438.        as BTRV) agree with the formal parameters.
  439.  
  440.        Static variables are not visible outside the subroutine,
  441.        so it is not possible for another part of the application
  442.        to change them.    They must be static because their values
  443.        must be retained between calls to BTRV.
  444.  
  445.        Note that all string parameters must be within the string
  446.        segment.
  447.  
  448.  
  449. ---------------------------------------------------------------------
  450. Digital Research CBASIC (CB-86)
  451.  
  452. Files:
  453.   CBXBTRV.OBJ - the CB-86 interface for BTRV;
  454.  CBTESTVA.BAS - a CB-86 program to demonstrate use of the interface;
  455.    CBIGET.OBJ - a subroutine used by CB-86 routines calling Btrieve;
  456.    CBISET.OBJ - a subroutine used by CB-86 routines calling Btrieve;
  457.  
  458.        The DOS commands listed below, for CBTESTVA, illustrate
  459.        how to compile and link a program that can call the
  460.        Btrieve Record Manager.    These commands assume that the
  461.        compiler and its ".OR?" files, the linker, and the CB-86
  462.        object library exist on the default directory.
  463.  
  464.        1) CB86 cbtestva
  465.        2) LINK86 cbtestva,cbxbtrv,cbiget,cbiset
  466.  
  467.        You may then execute the demo program with the following
  468.        DOS command:
  469.  
  470.        3) cbtestva
  471.  
  472.        The subroutines CBISET and CBIGET are provided for your
  473.        convenience only and are not needed if you have another
  474.        method for transferring integer data to/from string
  475.        variables.
  476. ---------------------------------------------------------------------
  477. Generic BASIC
  478.  
  479. Files:    B86XBTRV.OBJ for compiled BASIC and
  480.     B86XBTRV.EXE for interpretive Generic BASIC.
  481.  
  482.        Previous documentation on Generic BASIC incorrectly stated
  483.        that the use of this interface is the same as the BASIC
  484.        described in the manual.  This is not correct.
  485.  
  486.        See the description under TI BASIC for the proper format
  487.        for the Btrieve call.
  488.  
  489. ---------------------------------------------------------------------
  490. Microsoft QuickBasic v3.0
  491.  
  492. File: QBIXBTRV.OBJ - for Btrieve v4.0x and above
  493.  
  494.     Note: Releases of this documentation before Btrieve 4.11 contained an
  495.        error in the example code.  The statement
  496.  
  497.           fileptr% = varptr(f%)
  498.  
  499.        should have read
  500.  
  501.           fileptr% = varptr(#(f%))
  502.  
  503.        This interface to Microsoft QuickBasic prevents several
  504.        inconsistent errors which QuickBasic returned when data
  505.        files were closed.  The most common errors were:
  506.  
  507.            Device I/O error
  508.            Bad File Mode
  509.            Bad File Number.
  510.  
  511.        Use this interface, QBIXBTRV.OBJ, instead of BASXBTRV.OBJ.
  512.        You can also use it for the IBM Basic Compiler v2.0,
  513.        but NOT for interpreted Basic.
  514.  
  515.        The BASXBTRV.OBJ interface, which worked correctly with
  516.        earlier versions of Quick Basic, used the Basic FCB to
  517.        store information concerning the Btrieve file.  It appears
  518.        that QuickBasic looks at the FCB space before the close
  519.        operation.  If that area has been written to, it issues an
  520.        error.  The new interface does not write to the Basic FCB
  521.        space, but uses a string variable defined within the
  522.        program instead.  This variable is called the position
  523.        block.
  524.  
  525.        Because the position block is a separate variable from the
  526.        Basic file buffer, it must be passed as a separate
  527.        parameter on the Btrieve call.  The format for the Btrieve
  528.        call using this QBIXBTRV.OBJ interface is:
  529.  
  530.       call BTRV(op%,stat%,posblk$,fileptr%,dbuflen%,keybuf$,keynum%)
  531.      where:   op% = Btrieve operation number
  532.            stat% = Btrieve status return
  533.            posblk$ = Btrieve position block
  534.            fileptr% = varptr value to file buffer
  535.            dbuflen% = data buffer length
  536.            keybuf$ = key buffer
  537.            keynum% = file index path number
  538.  
  539.        The position block variable, posblk$, has been inserted
  540.        into the parameter list ahead of the file pointer.  The
  541.        following is a list of do's and don't's for using the
  542.        position block.
  543.  
  544.        1.  Create a unique position block for each Btrieve file
  545.        you open.
  546.  
  547.        2.  Initialize each position block to 128 spaces.
  548.  
  549.        3.  Never write to the position block once you have
  550.        initialized it to 128 spaces.
  551.  
  552.        4.  Be sure to pass the correct position block for the
  553.        file you are accessing on the Btrieve call.  Failure to do
  554.        so may result in corrupted files, or a Btrieve error 2.
  555.  
  556.     Tip:
  557.        Set up a string array for the position blocks, with the
  558.        array element number corresponding to the file number of
  559.        the file you are accessing.  The array element is then
  560.        passed to Btrieve on the call.  This assures that the
  561.        correct position block is always passed.  The following
  562.        code segment illustrates one way this might be done.
  563.  
  564.    numfiles% = 3            '3 Btrieve files
  565.    option base 1            'use 1 as base of array
  566.                     'because first file number
  567.                     'is 1. Option base 1 is used
  568.                     'here for convenience.
  569.    dim posarray$(numfiles%)        'number of position block
  570.                     'array elements set to number
  571.                     'of Btrieve files
  572.    for i = 1 to numfiles%
  573.      posarray$(i) = space$(128) 'initialize array to blanks
  574.    next i
  575.    .
  576.    .
  577.    .
  578.    f% = 1                'set file number
  579.    fileptr% = varptr(#(f%))        'set file pointer
  580.    call BTRV(op%,stat%,posarray(f%),fileptr%,dbuflen%,keybuf$,
  581.           keynum%)
  582.  
  583.        It is important to keep the position blocks for the files
  584.        distinct from each other.  That is why this example passes
  585.        the position block as an element of an array.  Btrieve
  586.        will sometimes write back to the position block variable,
  587.        and use that information on the next access to the file.
  588.        Also, be sure not to define the position blocks in a
  589.        subroutine or library which is compiled separately from
  590.        the main program, and then try to declare them as shared
  591.        ( see the QuickBasic manual, p.122 ).
  592.  
  593.  
  594.     Either the field method or the record type method may be used.
  595.     To use the field method, you must replace your varptr statement
  596.     with SADD (first fielded variable).  To use the record type
  597.     method, you must define your type, dimension an array as that type,
  598.     and use varptr (array name) to identify the buffer.
  599.  
  600. ---------------------------------------------------------------------
  601. Notes on Microsoft QuickBasic v4.0
  602.  
  603. Files: QB6PBTRV.OBJ (OS2 or Protect mode interface)
  604.        QB6RBTRV.OBJ (DOS or Real mode interface)      ==> UPDATED
  605.        QBIXBTRV.OBJ with patch
  606.  
  607.     With versions of QuickBasic prior to 4, when the FCB% was
  608.     evaluated, VARPTR (#1), QBIXBTRV had to skip 188 bytes of overhead
  609.     from the address returned, to get to the actual data.  Therefore, the
  610.     QBIXBTRV interface would add 188 to the FCB% address that was passed
  611.     in.  If you are using version 4 of QuickBasic, the way that the FCB%
  612.     is calculated gives the actual address at which the data starts.
  613.  
  614.     Since the QBIXBTRV interface still adds 188 to the address passed to
  615.     it, we previously recommended that the application subtract 188 from
  616.     the address prior to passing it to QBIXBTRV.  This can cause problems
  617.     if the actual address is less than 188!  To avoid this problem, apply
  618.     the following patch to QBIXBTRV and do NOT subtract 188 from your
  619.     FCB%.  The patched interface will NOT work with versions of
  620.     QuickBasic before 4.
  621.  
  622.           type: DEBUG QBIXBTRV.OBJ
  623.           type: -E 167
  624.     system returns: xxxx:0167    BC.
  625.           type:         00 <enter>
  626.           type: -W
  627.     system returns: Writing xxx bytes
  628.           type: -Q
  629.  
  630.  
  631.     Either use the field method or the record type method may be used.
  632.     To use the field method, you must replace your varptr statement
  633.     with SADD (first fielded variable).  To use the record type
  634.     method, you must define your type, dimension an array as that type,
  635.     and use varptr (array name) to identify the buffer.
  636.  
  637.  
  638.     FIELD METHOD:
  639.     ----------------------------------------------------
  640.     OPEN "NUL" AS #1 LEN=40
  641.     FIELD #1,20 AS F1NAME$, 10 AS F1TEL$, 2 AS F1ID$, 8 AS F1BAL$
  642.     OP% = 0
  643.     POSBLK$ = SPACE$ (128)
  644.     KEYBUF$ = "MYFILE.BTR "
  645.     KEYNUM% = 0
  646.     FCB% = SADD (F1NAME$)
  647.     BUFLEN% = 40
  648.     CALL BTRV (OP%, STAT%, POSBLK$, FCB%, BUFLEN%, KEYBUF$, KEYNUM%)
  649.  
  650.     RECORD METHOD
  651.     ----------------------------------------------------
  652.     TYPE DATABUFFER
  653.       NAME AS STRING * 20
  654.       TEL AS STRING * 10
  655.       ID AS INTEGER
  656.       BAL AS DOUBLE
  657.     END TYPE
  658.     DIM FIL1 AS DATABUFFER
  659.     OP% = 0
  660.     POSBLK$ = SPACE$ (128)
  661.     KEYBUF$ = "MYFILE.BTR "
  662.     KEYNUM% = 0
  663.     FCB% = VARPTR (FIL1)
  664.     'or  = VARPTR (FIL1.NAME)
  665.     BUFLEN% = 40
  666.     CALL BTRV (OP%, STAT%, POSBLK$, FCB%, BUFLEN%, KEYBUF$, KEYNUM%)
  667.  
  668. =====================================================================
  669. C Interfaces
  670.  
  671. Files:
  672. Borland Turbo C          see next section
  673. Ci-C86 v1.0             C86XBTRV.C
  674. Ci-C86 v2.0             C86XBTV2.C
  675. DeSmet C             DESXBTRV.C
  676. Lattice C v3.0, v6.0         LCXBTRV3.C
  677. Lattice C v2.0, v6.0         LCXBTRV2.C
  678. Lattice C v1.0             LCXBTRV.OBJ
  679. Mark Williams C          MWCXBTRV.C
  680. Microsoft C             MSCXBTRV.C
  681. IBM C/2              *C2XBTRV.C               ==> NEW
  682. IBM C/2              C2FXBTRV.C(family application)   ==> NEW
  683. Watcom C             WAT2BTRV.C               ==> NEW
  684.  
  685.  *Not distributed with Btrieve v5.1 for DOS
  686.  
  687.        The only difference in using the interfaces is the name of
  688.        the file to include when you link your program.    The
  689.        format of the calls to Btrieve is identical for each.
  690.  
  691.        To use an interface with large model, look at the source
  692.        code of the interface to see if comments must be removed
  693.        from a statement.  If a Microsoft C program is compiled
  694.        specifically for Microsoft Windows, a comment in the
  695.        source must be removed.
  696.  
  697.        After your C program has been successfully compiled, it
  698.        must be linked with the C Interface.  For a complete
  699.        explanation of linking, which varies slightly depending on
  700.        the compiler being used, refer to your operating system
  701.        manual and your C reference manual.
  702.  
  703.     Special Notes:
  704.  
  705.        Ci-C86:
  706.      Since version v1.0 and v2.0 of the Ci-C86 compiler
  707.      generate different object files, you should compile the
  708.      interface with your own compiler.  Then link the resulting
  709.      object file with your C program.
  710.  
  711.        Lattice C:
  712.      Since version v1.0 of the Lattice C compiler uses
  713.      different calling conventions from versions v2.0 and v3.0, there
  714.      are 3 kinds of Lattice C interfaces on the Btrieve Diskette.
  715.  
  716.      If you are using Version v1.0, link your program with interface
  717.      LCXBTRV.OBJ. Otherwise compile and use LCXBTRV2.C or LCXBTRV3.C.
  718.      LCXBTRV3.C eliminates complier warnings that occurred when
  719.      LCXBTRV2.C was used with Version v3.0.
  720.  
  721.      If you are using version 6.0 of Lattice C, recompile the interface
  722.      ICXBTRV3.C with version 6.0.
  723.  
  724. ---------------------------------------------------------------------
  725. Borland Turbo C
  726.  
  727. TURCBTRV.C - for Btrieve v4.0x and above
  728.  
  729.        This interface is written in Turbo C.  You may use
  730.        the preprocessor control line
  731.  
  732.        #include "TURCBTRV.C"
  733.  
  734.        or link the compiled interface with the rest of the
  735.        application.  It is important that the interface is
  736.        compiled in the same model as the rest of the program.
  737.  
  738.        The format for the Btrieve call using the Turbo C
  739.        interface is the same as for the other C compilers.
  740.  
  741.        IMPORTANT NOTE:
  742.        If you compile the program using a memory model which
  743.        allows more than one data segment, such as compact, large,
  744.        or huge, the preprocessor statement which defines LMODEL
  745.        must be uncommented.
  746.  
  747.        The interface will not work in these models if you send an
  748.        integer constant for character arrays, even if Btrieve
  749.        does not require the parameter.    This is because only the
  750.        integer will be placed on the stack when an offset and
  751.        segment is expected.  For example, use
  752.  
  753.        BTRV (op, pos, databuf, &dblen, key, 0);
  754.                   /* pos, data, key buf are arrays */
  755.  
  756.        not
  757.  
  758.        BTRV (op, 0, databuf, &dblen, key, 0);
  759.  
  760.  
  761. =====================================================================
  762. MBP COBOL-85
  763.  
  764. Files: MBP85BTV.OBJ, MBP85FAC.OBJ
  765.  
  766.     MBP has supplied the above files to allow MBP COBOL-85 to
  767.     interface with Btrieve.  The parameters are the same type
  768.     as for the other MBP COBOL interface.  Link the .OBJ file
  769.     with your other MBP COBOL files.  The MBP85BTV file has the
  770.     following calling convention:
  771.  
  772.     CALL "BTRV" USING FUNCTION, STATUS, POSITION-BLOCK, DATA-RECORD,
  773.         DATA-LEN, KEY-VALUE, KEY-NUMBER.
  774.  
  775.     The MBP85XFAC file is for use with Btrieve v3.15 or
  776.     earlier:
  777.  
  778.     CALL "BTRIEVE" USING FUNCTION, STATUS, POSITION-BLOCK, DATA-RECORD,
  779.         KEY-VALUE, KEY-NUMBER.
  780.  
  781. ---------------------------------------------------------------------
  782. MBP COBOL
  783.  
  784. Files:    MBPXBTRV.OBJ.
  785.  
  786.        All calls to Btrieve from an MBP COBOL program must be in
  787.        the following format:
  788.  
  789.        CALL 'BTRV' USING OPERATION, B-STATUS, POSITION-BLOCK,
  790.      DATA-BUFFER, DATA-LEN, KEY-BUFFER, KEY-NUMBER.
  791.  
  792.     where:
  793.      FUNCTION - function number for request        COMP-1
  794.      STATUS   - return status from request           COMP-1
  795.      POSITION-BLOCK - 128 byte buffer           record
  796.      DATA-RECORD - User data buffer            record
  797.      DATA-LEN  - Length of the user's data buffer  COMP-1
  798.      KEY-VALUE   - string pointer to key buffer    record
  799.      KEY-NUMBER  - key number to be processed      COMP-1
  800.  
  801.        All integer variables you pass to Btrieve should have a
  802.        picture of COMP-1.  This includes the function code, the
  803.        key number, the return status, the data length, and the
  804.        integer variables in the file description required for a
  805.        Create or Stat operation.
  806.  
  807.        The other parameters are record variables.
  808.  
  809. ---------------------------------------------------------------------
  810. Micro Focus COBOL/2
  811.  
  812. Files: MF2BTRV.OBJ, CSUPPORT.OBJ
  813.  
  814.        An interface is available for the new Micro Focus COBOL/2 which
  815.        supports the default model, HUGE.  The two .OBJ files are
  816.        linked with your COBOL program.    In order to use this COBOL
  817.        interface, write the Btrieve call as described below, compile
  818.        your COBOL program and link it with the .OBJ files.
  819.  
  820.        You may need to specify additional link parameters, such as the
  821.        COBOL library LCOBOL.
  822.  
  823.        NOTE:  Unresolved externals errors were returned during
  824.        linking when MINITC was being used.  Micro Focus supplies
  825.        alternate routines MSSTART and MS2COB.  They are available on the
  826.        Micro Focus bulletin board as MSSTART.ARC (415-856-1942) or under
  827.        CompuServe as MF2LNK.ARC.
  828.  
  829.        CALL "_BTRV" USING FUNCTION, STATUS, POSITION-BLOCK,
  830.          DATA-RECORD, DATA-LEN, KEY-VALUE, KEY-NUMBER.
  831.        where:
  832.      FUNCTION - function number for request   PIC 9999 COMP-5.
  833.      STATUS - return status from request      PIC 9999 COMP-5.
  834.      POSITION-BLOCK - 128-byte buffer
  835.      DATA-RECORD - User data buffer
  836.      DATA-LEN - Length of user data buffer      PIC 9999 COMP-5.
  837.      KEY-VALUE - string pointer to key buffer
  838.      KEY-NUMBER - key number to be processed  PIC 9999 COMP-5.
  839.  
  840.        All integer variables you pass to Btrieve should have a
  841.        picture of 9(4) COMP-5.    This includes the function code,
  842.        the key number, the return status, the data buffer length,
  843.        and the integer variables in the file description required
  844.        for a create or stat operation.
  845.  
  846.        A COBOL program which uses previous versions of Micro Focus
  847.        COBOL will have to make the following changes to work with
  848.        COBOL/2.
  849.  
  850.        1) change call from "MFXBTRV.BIN" to call "_BTRV"
  851.        2) Change Btrieve operation, status, and key number parameters
  852.        from PIC 9999 COMP to PIC 9(4) COMP-5.
  853.  
  854.        Other considerations include the following:
  855.  
  856.        1) No BY VALUE or BY REFERENCE phrases are needed for the BTRV
  857.        parameters.
  858.  
  859.        2) The status of the BTRV call is put in both the COBOL/2
  860.        predefined variable RETURN-CODE and the STATUS parameter to
  861.        Btrieve.  Either variable may be checked, but the STATUS
  862.        parameter must always be sent.
  863.  
  864.        3) Some additional COBOL PICS are supported as key types with
  865.        4.10 Btrieve.  COMP-5, if it is 2 bytes, ie, the PIC is 99 or
  866.        9999, is SIGNED type if the PIC is signed; is UNSIGNED or
  867.        BINARY if the PIC is unsigned.  COMP-3 or PACKED-DECIMAL is
  868.        DECIMAL.
  869.  
  870. ---------------------------------------------------------------------
  871. Micro Focus COBOL
  872.  
  873. Files: MFXBTRV.BIN.
  874.  
  875.        The interface to Micro Focus COBOL is loaded by the COBOL
  876.        runtime during the first call to Btrieve.  In order to use
  877.        the Micro Focus COBOL Interface, call Btrieve as follows:
  878.  
  879.        CALL "MFXBTRV.BIN" USING FUNCTION, STATUS, POSITION-BLOCK,
  880.          DATA-RECORD, DATA-LEN, KEY-VALUE, KEY-NUMBER.
  881.        where:
  882.      FUNCTION - function number for request   PIC 9999 COMP.
  883.      STATUS - return status from request      PIC 9999 COMP.
  884.      POSITION-BLOCK - 128-byte buffer
  885.      DATA-RECORD - User data buffer
  886.      DATA-LEN - Length of user data buffer      PIC 9999 COMP.
  887.      KEY-VALUE - string pointer to key buffer
  888.      KEY-NUMBER - key number to be processed  PIC 9999 COMP.
  889.  
  890.        All integer variables you pass to Btrieve should have a
  891.        picture of 9999 COMP.  This includes the function code,
  892.        the key number, the return status, the data buffer length,
  893.        and the integer variables in the file description required
  894.        for a Create or Stat operation.
  895.  
  896. ---------------------------------------------------------------------
  897. Realia COBOL
  898.  
  899. Files:    REAXBTRV.OBJ.
  900.  
  901.        Link the interface with your Realia COBOL application.  In
  902.        order to use the Realia COBOL Interface, call Btrieve as
  903.        follows:
  904.  
  905.     CALL 'BTRV' USING FUNCTION, POSITION-BLOCK, DATA-RECORD,
  906.                  DATA-LEN, KEY-VALUE, KEY-NUMBER.
  907.     where:
  908.        FUNCTION - function number for request
  909.        POSITION-BLOCK - 128-byte buffer
  910.        DATA-RECORD - data buffer
  911.        DATA-LEN - data buffer length
  912.        KEY-VALUE - string pointer to key buffer
  913.        KEY-NUMBER - key number to be processed
  914.  
  915.        Your application should check the RETURN-CODE variable
  916.        after each call for the status of the operation.  This is
  917.        a requirement of the compiler.  Refer to the Realia COBOL
  918.        compiler documentation for more information.
  919.  
  920.        All integer variables you pass to Btrieve should be of
  921.        type COMP-5.  This includes the function code, the key
  922.        number, the data buffer length, and the integer variables
  923.        in the file description required for the create or stat
  924.        operations.
  925.  
  926. ---------------------------------------------------------------------
  927. RM COBOL
  928.  
  929. Files: RMXBTRV.EXE.
  930.  
  931.        The interface to RM COBOL is loaded by the COBOL runtime
  932.        during the first call to Btrieve.
  933.  
  934.        Note:  If you are using 2.x of RM, it is
  935.        recommended you use the shown calling sequence.
  936.        (Previously, the calling procedure called "RMXFACE.COM".)
  937.  
  938.     Calling Procedure from COBOL
  939.  
  940.     CALL "RMXBTRV.EXE" USING FUNCTION, STATUS, POSITION-BLOCK,
  941.              DATA-RECORD, DATA-LEN, KEY-VALUE, KEY-NUMBER.
  942.           where:
  943.         FUNCTION - function number for request    (COMP)
  944.         STATUS - return status from request    (COMP)
  945.         POSITION-BLOCK - 128 byte buffer
  946.         DATA-RECORD - User data buffer
  947.         DATA-LEN - Length of data buffer    (COMP)
  948.         KEY-VALUE - string pointer to key buffer
  949.         KEY-NUMBER - key number to be processed (COMP)
  950.  
  951. =====================================================================
  952. Microsoft Fortran
  953.  
  954. Files:    FORXBTRV.OBJ and FORXBTRV.ASM.
  955.  
  956.        A sample program, SAMPLE.FOR, illustrates how to use the
  957.        Fortran interface.
  958.  
  959. =====================================================================
  960. Logitech Modula-2/86
  961.  
  962. Files: MODXBTRV.MOD, MODXBTRV.DEF.
  963.  
  964.        The interface for Logitech Modula-2/86 may be accessed
  965.        from the module ModXBTRV.  This module exports the
  966.        function BTRV.
  967.  
  968.        To access function BTRV from an application program, the
  969.        user must include the following statements in the import
  970.        list:
  971.  
  972. FROM ModXBTRV IMPORT BTRV;
  973. FROM SYSTEM   IMPORT ADR;
  974.  
  975.        BTRV may be called from the application program in the
  976.        following manner:
  977.  
  978.    status := BTRV (Op, ADR(Pos), ADR(Data), DataLen, ADR(KeyBuf),
  979.             Key);
  980.  
  981.    where:
  982.     Op:      CARDINAL;    (* Operation           *)
  983.     Pos:      any data type;(* Position Block      *)
  984.     Data:      any data type;(* Data Buffer           *)
  985.     DataLen:  CARDINAL;    (* Data Length           *)
  986.     KeyBuf:   any data type;(* Key Buffer           *)
  987.     Key:      INTEGER;    (* Key Number           *)
  988.     status:   INTEGER;    (* Btrieve error code  *)
  989.  
  990.        Be sure to use the ADR function on the Pos, Data, and
  991.        KeyBuf variables before sending them to the BTRV function.
  992.        The ADR function makes sure they are in the format
  993.        expected by BTRV.
  994.  
  995.        The definition module (ModXBTRV.def) of the interface must
  996.        be compiled prior to its implementation module
  997.        (ModXBTRV.mod).    The interface must be compiled prior to
  998.        the application which imports it.
  999.  
  1000.        The following line compiles the interface:
  1001.  
  1002.        M2 comp Modxbtrv.def Modxbtrv.mod
  1003.  
  1004.        A modula-2 application program could be compiled, linked
  1005.        and run by typing the following lines:
  1006.  
  1007.        M2 comp Application.def Application.mod
  1008.        M2 link Application.lnk
  1009.        M2 Application
  1010.  
  1011.  
  1012. =====================================================================
  1013. Borland Turbo Pascal v4.0
  1014.  
  1015. File: TUR4BTRV.PAS
  1016.  
  1017.        Turbo Pascal v4.0 requires this interface which uses
  1018.        the same calling and type conventions as TURXBTRV.PAS.(see
  1019.        Appendix D of the Btrieve Manual). This interface connot be
  1020.        used with previous versions of Turbo Pascal.
  1021.  
  1022. ---------------------------------------------------------------------
  1023. Metaware Pascal
  1024.  
  1025. Files: MPMXBTRV.OBJ, MPLXBTRV.OBJ, and MPXBTRV.PAS
  1026.  
  1027.        When you compile your application program, include the
  1028.        MPXBTRV.PAS source file in your application program.  This
  1029.        file defines the Btrieve function and includes a pragma to
  1030.        specify the name of the interface object file.
  1031.  
  1032.        If you are using the small or medium model compiler, link
  1033.        your compiled program to the MPMXBTRV.OBJ interface file.
  1034.  
  1035.        If you are using the large model compiler, link your
  1036.        compiled program to the MPLXBTRV.OBJ interface file.
  1037.  
  1038.        The external function, BTRV, is defined as follows:
  1039.  
  1040.     type
  1041.        STR128 = PACKED ARRAY[1..128] of CHAR;
  1042.  
  1043.     function btrv(fcn:Integer;
  1044.            VAR cur_block  : STR128;
  1045.            VAR data_buf   : STRING;
  1046.            VAR data_len   : Integer;
  1047.            VAR key_buf      : STRING;
  1048.             key_number : Integer): Integer; External;
  1049.  
  1050.     pragma Alias(btrv,'BTRV');
  1051.  
  1052. ---------------------------------------------------------------------
  1053. SBB Pascal
  1054.  
  1055. Files:    SBBXBTRV.OBJ and SBBEXTRN.PAS.
  1056.  
  1057.        The Btrieve function should be declared as external for
  1058.        SBB Pascal.  Btrieve provides a small assembly language
  1059.        routine which you must link with your Pascal application
  1060.        as an external function.  If you are programming in SBB
  1061.        Pascal, use the $I command to include the file
  1062.        SBBEXTRN.PAS.  The external function, BTRV, is defined as
  1063.        follows:
  1064.  
  1065. function BTRV  (     OP      : integer;
  1066.         var  POS_BLOCK     : string0;
  1067.         var  DATA_BUFFER : integer;
  1068.         var  DATA_LENGTH : integer;
  1069.         var  KEY_BUFFER  : integer;
  1070.              KEY_NUMBER  : integer) : integer; external;
  1071.  
  1072.        After your SBB Pascal program has been successfully
  1073.        compiled with the external function BTRV defined, link it
  1074.        with the Pascal Interface, SBBXBTRV.OBJ.  In order to link
  1075.        a Pascal program whose object is stored in the file,
  1076.        "pasprog", with the SBB Pascal Interface, you would
  1077.        respond to the linker prompt for object modules as
  1078.        follows:
  1079.  
  1080.     Object Modules [.OBJ]: pasprog+sbbxbtrv
  1081.  
  1082.        For a complete explanation of linking, refer to your
  1083.        operating system manual and your Pascal reference manual.
  1084.  
  1085.        The position block must be allocated as a 128-byte long
  1086.        string.
  1087.  
  1088.        For the operation parameter, data buffer length, and key
  1089.        number, the variable you specify must be of type integer.
  1090.  
  1091.        The data buffer and key buffer are passed as type integer.
  1092.        It is often desirable to define a record structure in
  1093.        Pascal to describe these variables. Refer to the "Calling
  1094.        Btrieve From Pascal" section of Appendix D in the Btrieve
  1095.        Programmer's Manual for an explanation of using variant
  1096.        records for the data buffer and key buffer. The variant
  1097.        should be of type integer.
  1098.  
  1099. =====================================================================
  1100.