in reply to Code efficiency / algorithm
Have you considered using a relational database? This is the kind of data manipulation that they're good for. With data moved into tables, and an appropriate index, you could do something like
to pull out the data you want.SELECT Datafile1.Company, DataFile2.ID, DataFile1.Description, DataFile2.Address, DataFile2.MoreData FROM Datafile1, DataFile2 WHERE DataFile2.ID >= DataFile1.SID AND DataFile.ID <= DataFile2.EID
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Code efficiency / algorithm
by dave8775 (Novice) on Jan 14, 2003 at 06:49 UTC | |
by DaveH (Monk) on Jan 14, 2003 at 08:53 UTC | |
by graff (Chancellor) on Jan 14, 2003 at 07:51 UTC | |
by BrowserUk (Patriarch) on Jan 14, 2003 at 09:51 UTC | |
by runrig (Abbot) on Jan 14, 2003 at 17:24 UTC |