home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0210 - 0219 / ibm0210-0219 / ibm0213.tar / ibm0213 / 7025PWA1.ZIP / SAMPLES.ZIP / SQLLIB / SAMPLES / C / BLOCK.H < prev    next >
Encoding:
Text File  |  1994-02-28  |  229 b   |  16 lines

  1.    int err(struct sqlca *);
  2.  
  3.    struct employee
  4.    {
  5.      short id;
  6.      char name[10];
  7.    };
  8.  
  9.    struct persons
  10.    {
  11.     short len;
  12.     unsigned short number_of_records;
  13.     struct employee employees[35];
  14.    };
  15.  
  16.