home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 13.ddi / SQLDA.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-08-15  |  1.8 KB  |  53 lines

  1. /***************************************************************
  2. *      The SQLDA descriptor definition                         *
  3. *--------------------------------------------------------------*
  4. *      80x86 Version                                           *
  5. *                                                              *
  6. *  Copyright (c) 1987 by Oracle Corporation                    *
  7. ***************************************************************/
  8.  
  9. /*  MODIFIED
  10.     Okamura    08/15/89 - remove unsigned
  11.     Okamura    02/16/89 - size changes to match sql layer (N and F)
  12.     Morse      12/01/87 - undef L and S for v6 include files
  13.     Richey     07/13/87 - change int defs to long
  14.     Clare      09/13/84 - Port: Ch types to match SQLLIB structs
  15.     Clare      10/02/86 - Add ifndef SQLDA
  16. */
  17.  
  18. #ifndef SQLDA_
  19. #define SQLDA_ 1
  20.  
  21. #ifdef T
  22. # undef T
  23. #endif
  24. #ifdef F
  25. # undef F
  26. #endif
  27.  
  28. #ifdef S
  29. # undef S
  30. #endif
  31. #ifdef L
  32. # undef L
  33. #endif
  34.  
  35. struct SQLDA {
  36.   int     N;   /* Descriptor size in number of entries         */
  37.   char  **V;   /* Ptr to Arr of addresses of main variables    */
  38.   long   *L;   /* Ptr to Arr of lengths of buffers             */
  39.   short  *T;   /* Ptr to Arr of types of buffers               */
  40.   short **I;   /* Ptr to Arr of addresses of indicator vars    */
  41.   int     F;   /* Number of variables found by DESCRIBE        */
  42.   char  **S;   /* Ptr to Arr of variable name pointers         */
  43.   short  *M;   /* Ptr to Arr of max lengths of var. names      */
  44.   short  *C;   /* Ptr to Arr of current lengths of var. names  */
  45.   char  **X;   /* Ptr to Arr of ind. var. name pointers        */
  46.   short  *Y;   /* Ptr to Arr of max lengths of ind. var. names */
  47.   short  *Z;   /* Ptr to Arr of cur lengths of ind. var. names */
  48.   };
  49.  
  50. typedef struct SQLDA SQLDA;
  51.  
  52. #endif
  53.