DOCUMENT:Q129314 12-FEB-2000 [foxpro] TITLE :SCATTER & GATHER Commands Have a New NAME Argument PRODUCT :Microsoft FoxPro PROD/VER:WINDOWS:3.0 OPER/SYS: KEYWORDS:kbcode ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual FoxPro for Windows, version 3.0 ------------------------------------------------------------------------------- SUMMARY ======= The SCATTER and GATHER commands have a new argument (NAME ) that enables the Object Oriented Programming (OOP) features of Visual FoxPro. This article shows by example how to use this new argument. MORE INFORMATION ================ SCATTER Command --------------- SCATTER NAME creates a row or record type of object with properties that have the same name as the fields in the table. The values of the properties are initialized to the same value as that of the fields in the table. General and memo field types do not have a property created for them in the object. The syntax for the SCATTER command is: SCATTER [FIELDS | FIELDS LIKE | FIELDS EXCEPT ][MEMO] TO | TO BLANK | MEMVAR | MEMVAR BLANK | NAME GATHER Command -------------- GATHER NAME writes a row or record of values from the object to the table where the object properties have names that are identical to the table field names. The syntax for the GATHER command is: GATHER FROM | MEMVAR | NAME [FIELDS | FIELDS LIKE | FIELDS EXCEPT ] [MEMO] Code Sample ----------- The following code defines a custom class that uses the SCATTER and GATHER commands with their object argument, NAME. The code demonstrates: - How to create the class. - How to instantiate the object from the class. - How to use SCATTER NAME and GATHER NAME to read and write to a table through an object. - How to send messages to the object to access properties of the object. * Program start. * The following three commands close files and set up the environment * to send output to the Visual FoxPro main screen. ACTIVATE SCREEN CLEAR CLOSE DATABASES * The next three commands create a new table and add two new records * with values. CREATE TABLE test1 (Name C(10), Age N(3)) INSERT INTO test1 (Name,Age) ; VALUES ('John Doe',43) INSERT INTO test1 (Name,Age) ; VALUES ('Jane Smith',29) CLOSE DATABASES * The following command creates a new object 'oTable' from the custom * class 'Table' defined at the end of this program. It uses the table * 'test1' that was just made. The object 'oRow' is automatically * created during the creation of oTable from the SCATTER NAME * command and has a property created for each field in the table. oTable=CREATEOBJECT('Table','test1') LIST * The following command sends a message to the object oTable to run the * method Next which moves the record pointer in the table ahead one. oTable.Next() * The next two commands send messages to assign new values to the * properties of oTable.oRow. oTable.oRow.Name='New Name' oTable.oRow.Age=1 * Note that the following command is calling the user defined Gather * function or method which then calls the GATHER NAME command. oTable.Gather() * The following sends a message to object oTable to run the method Previous * and assign new values to properties before writing them to the * table 'test1.dbf' with GATHER NAME command. oTable.Previous() oTable.oRow.Name='VFP' oTable.oRow.Age=0 oTable.Gather() LIST RETURN *************************** *** Class Definition *** *************************** DEFINE CLASS Table AS Custom * The keyword PROTECTED scopes the methods, properties and * objects making them only accessible to methods in the * current class definition. PROTECTED cFileName cFileName='' oRow='' * The Init event runs each time a new object is instantiated * from its class. PROTECTED FUNCTION Init(tcFileName) * tcFileName: second parameter of CreateObject command, * which is the name of the file to open. SELECT 0 * Open the file in the next available workarea. this.Open(tcFileName) * Note that the following command is calling the user * defined Scatter method, which then calls the * SCATTER NAME command. this.Scatter() RETURN .T. ENDFUNC FUNCTION Open(tcf) * tcf: the filename to open. USE (tcf) RETURN .T. ENDFUNC FUNCTION Close USE RETURN .T. ENDFUNC FUNCTION Next IF NOT EOF() SKIP ENDIF IF EOF() AND NOT BOF() SKIP -1 ENDIF this.Scatter() RETURN .T. ENDFUNC FUNCTION Previous IF NOT BOF() SKIP -1 ENDIF this.Scatter() RETURN .T. ENDFUNC FUNCTION Scatter * SCATTER NAME * In Visual FoxPro only, creates an object * the properties of which have the same names as * the fields in the table. The values of each * of the object's properties are the contents * of the fields in the table. SCATTER NAME this.oRow MEMO RETURN .T. ENDFUNC FUNCTION Gather * GATHER NAME * Specifies an object the properties of which * have the same names as fields in the table. * The contents of each field are replaced by * the value of the property with the same * names as the fields. GATHER NAME this.oRow MEMO RETURN .T. ENDFUNC FUNCTION Destroy this.Close() RETURN .T. ENDFUNC ENDDEFINE * End of code sample Additional query words: VFoxWin 3.00 ====================================================================== Keywords : kbcode Technology : kbVFPsearch kbAudDeveloper kbVFP300 Version : WINDOWS:3.0 ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2000.