4D v13.4IMPORT TEXT |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v13.4
IMPORT TEXT
IMPORT TEXT
The IMPORT TEXT command reads data from document, a Windows or Macintosh text document, into the table aTable by creating new records for that table. The import operation is performed through the current input form. The import operation reads fields and variables based on the layering of objects in the input form. For this reason, you should be very careful about the front-to-back order of text objects (fields and variables) in the form. The first object into which data will be imported should be in the back of the form, and so on. If the number of fields or variables in the form does not match the number of fields being imported, the extra ones are ignored. An input form used for importing cannot contain any buttons. Subform objects are ignored. Note: One way to ensure that the data is imported into the correct objects is to select the object into which the first field should be imported and move it to the front. Continue to move fields and variables to the front in order, making sure that you have one field or variable for each field being imported. An On Validate event is sent to the form method for each record that is imported. If you use variables in the import form, use this event to copy data from variables to fields, . The document parameter can include a path that contains volume and folder names. If you pass an empty string, the standard Open File dialog box is displayed. If the user cancels this dialog, the import operation is canceled, and the OK system variable is set to 0. A progress thermometer is displayed during import. The user can cancel the operation by clicking a button labeled Stop. Records that have already been imported will not be removed if the user presses the Stop button. If the import is successfully completed, the OK system variable is set to 1. If an error occurs or the operation was interrupted, the OK variable is set to 0. The thermometer can be hidden with the MESSAGES OFF command. In Unicode mode (standard mode), the command uses by default the UTF-8 character set. You can use the USE CHARACTER SET command to change this character set. In ASCII compatibility mode, the import operation uses the ASCII table of the platform on which it is executed, except when the USE CHARACTER SET command was used prior to the import.
The following example imports data from a text document. The method first sets the input form so that the data will be imported through the correct form, changes the 4D delimiter variables, then performs the import: FORM SET INPUT([People];"Import")
OK is set to 1 if the import is successfully completed; otherwise, it is set to 0. |
PROPERTIES
Product: 4D
INDEX HISTORY
Modified: 4D v11 SQL SEE ALSO
EXPORT TEXT |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||