home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example7.s < prev    next >
Encoding:
Text File  |  1993-09-04  |  198 b   |  14 lines

  1. relation example7
  2.  
  3. typedef example7;
  4.  
  5. field author  type string length 40;
  6. field title   type string length 50;
  7. field summary type mchar;
  8.  
  9. index ix_author on author;
  10. index ix_title  on title;
  11.  
  12. end
  13.  
  14.