qck.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
Random Access Vs. Sequential Access
                                                 Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Random Access Vs. Sequential Access
 
 ■ "Random access" is a type of file access used for files whose data is
   organized into discrete records of fixed length. Records can be accessed
   in any order.
   See: GET Statement (File I/O)  LEN Function    OPEN Statement
        PUT Statement (File I/O)  TYPE Statement
 
 ■ "Sequential access" is a type of file access used for text files and
   variable-length record files. The records must be accessed in a
   particular order. Numbers in a sequential-access file are represented
   by character strings, just as words are.
   See: CLOSE Statement  INPUT$ Function  INPUT # Statement
        LINE Statement   OPEN Statement   PRINT # Statement