home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / database / 6390 < prev    next >
Encoding:
Text File  |  1992-08-27  |  935 b   |  24 lines

  1. Newsgroups: comp.databases
  2. Path: sparky!uunet!dcatlas!joet
  3. From: joet@dcatlas.dot.gov (Joe Trott)
  4. Subject: Re: Simple Question on Paradox
  5. Message-ID: <1992Aug27.203615.26902@dcatlas.dot.gov>
  6. Organization: U.S Dept. of Transportation
  7. References: <6717@tekig7.PEN.TEK.COM>
  8. Date: Thu, 27 Aug 1992 20:36:15 GMT
  9. Lines: 13
  10.  
  11.  
  12. If this is to be a multi-user application, and the table to be appended is
  13. _NOT_ a temporary scratch table, RTFM on the subject of Form Locking.  You
  14. _cannot_ override a Paradox form lock.  If the table you are adding _to_
  15. is to be accessed simultaneously with a form, you will not be able to
  16. append to the table by any means _but_ that form if anyone is coediting it.
  17. You must write a script to SCAN the input table and use COPYTOARRAY before
  18. moving to the destination table, _picking the desired form_, Coediting, and
  19. using a COPYFROMARRAY.  Don't forget to deal with possible key violations,
  20. and have fun.
  21.  
  22. -JTT
  23.  
  24.