in reply to help reading from large file needed

The seek function allows you to move forward and backward (and there's a complementary tell function which lets you know where you are in the file). However, unless you know exactly where you want to go, that's not necessarily going to be of much use. If you have fixed-length records and know exactly which record you're after, that may be a solution.

As already stated, a DB solution may be better.

-- Ken

  • Comment on Re: help reading from large file needed