home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 6 / 06.iso / a / a610 / 4.ddi / INCL / SQLDA.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-08  |  1.2 KB  |  41 lines

  1. /***************************************************************************
  2.  *
  3.  *                    RELATIONAL DATABASE SYSTEMS, INC.
  4.  *
  5.  *  COPYRIGHT (c) 1981-1986 RELATIONAL DATABASE SYSTEMS, INC., PALO ALTO, 
  6.  *  CALIFORNIA.  All rights reserved.  No part of this work covered by the 
  7.  *  copyright hereon may be reproduced or used in any form or by any means 
  8.  *  -- graphic, electronic, or mechanical, including photocopying, 
  9.  *     recording, taping, or information storage and retrieval systems --
  10.  *  without permission of RDS.
  11.  *
  12.  *  Title:    sqlda.h
  13.  *  Sccsid:    @(#)sqlda.h    4.3    11/24/86  15:41:37
  14.  *  Description:
  15.  *        SQL Data Description Area
  16.  *
  17.  ***************************************************************************
  18.  */
  19.  
  20.  
  21. #ifndef _SQLDA
  22. #define _SQLDA
  23.  
  24. struct sqlvar_struct
  25.     {
  26.     short sqltype;        /* variable type        */
  27.     short sqllen;        /* length in bytes        */
  28.     char *sqldata;        /* pointer to data        */
  29.     short *sqlind;        /* pointer to indicator        */
  30.     char  *sqlname;        /* variable name        */
  31.     char  *sqlformat;        /* reserved for future use     */
  32.     };
  33.  
  34. struct sqlda
  35.     {
  36.     short sqld;
  37.     struct sqlvar_struct *sqlvar;
  38.     };
  39.  
  40. #endif /* _SQLDA */
  41.