* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
//NOTEST
|
|
|
|
// Test program for COPY TO SDF and APPEND FROM SDF
|
|
// Note: Only COPY TO SDF is fully implemented at this time...
|
|
|
|
/* Harbour Project source code
|
|
http://harbour-project.org/
|
|
Donated to the public domain on 2001-04-18 by David G. Holm <dholm@jsd-llc.com>
|
|
*/
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL ncount := 0
|
|
|
|
USE test NEW
|
|
// Copy all records and fields.
|
|
COPY TO test1 SDF
|
|
|
|
// Copy only address fields for records with salary over 50,000.
|
|
COPY FIELD first, last, street, city, state, zip TO test2 SDF FOR _field->salary > 50000
|
|
|
|
// Only copy record 3.
|
|
COPY RECORD 3 TO test3 SDF
|
|
|
|
// Copy records 4 through 7.
|
|
COPY NEXT 4 TO test4 SDF
|
|
|
|
// Try to copy 10 records, starting 5 records from EOF, using WHILE
|
|
GO BOTTOM
|
|
SKIP -4
|
|
COPY WHILE ncount++ < 9 TO test4a SDF
|
|
|
|
// Copy the last 10 records.
|
|
GO BOTTOM
|
|
SKIP -9
|
|
COPY REST TO test5 SDF
|
|
|
|
// Copy the last 10 records again.
|
|
GO BOTTOM
|
|
SKIP -9
|
|
COPY TO test6 SDF WHILE ! Eof()
|
|
|
|
// Copy only some of the last 10 records.
|
|
GO BOTTOM
|
|
SKIP -9
|
|
COPY REST TO test7 SDF FOR _field->married
|
|
|
|
// Try to append from a file that we know does not exist.
|
|
DELETE FILE test8.txt
|
|
APPEND FROM test8 SDF
|
|
|
|
RETURN
|