home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / database / 7718 < prev    next >
Encoding:
Internet Message Format  |  1992-11-09  |  1.0 KB

  1. Path: sparky!uunet!ogicse!decwrl!elroy.jpl.nasa.gov!swrinde!ringer!lonestar.utsa.edu!moursand
  2. From: moursand@lonestar.utsa.edu (Bowen M. Moursund)
  3. Newsgroups: comp.databases
  4. Subject: Re: Reading dBase III+ Files
  5. Message-ID: <1992Nov9.182316.2212@ringer.cs.utsa.edu>
  6. Date: 9 Nov 92 18:23:16 GMT
  7. Article-I.D.: ringer.1992Nov9.182316.2212
  8. References: <1992Nov4.175300.2787@vela.acs.oakland.edu>
  9. Sender: news@ringer.cs.utsa.edu
  10. Distribution: usa
  11. Organization: University of Texas at San Antonio
  12. Lines: 15
  13. Nntp-Posting-Host: lonestar.utsa.edu
  14.  
  15. >I am trying to export data from a dBase III+ file into a text file or into
  16. >my own data file.  The export feature only makes a "PFS file."  If I can find
  17. >any information on how to port the data to a text file or getting the
  18. >variable record structure so I can read it in Pascal or C data structure
  19. >format.
  20.  
  21. Howsabout:
  22.  
  23. use mydbf
  24. copy to mydbf.sdf type sdf
  25.  
  26. This'll get you an ASCII file in System Data Format: fixed length fields with
  27. each record terminated with a CRLF.
  28.  
  29. - Bowen -
  30.