Board index » delphi » Delphi I/O Eating all my Memory
Joseph M. Day
![]() Delphi Developer |
Mon, 28 Jun 1999 03:00:00 GMT
|
Joseph M. Day
![]() Delphi Developer |
Mon, 28 Jun 1999 03:00:00 GMT
Delphi I/O Eating all my MemoryI am doing a simple Read Parse and output of a large ASCII file (~350MB). Joe, |
Phil Eldridg
![]() Delphi Developer |
Mon, 28 Jun 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryHi Does the file you are reading only have linefeeds (ex UNIX) or carriage Hope this sheds some light on your problem. Phil E |
Matthias Bollige
![]() Delphi Developer |
Mon, 28 Jun 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryQuoteJoseph M. Day wrote: Quote> Does the file you are reading only have linefeeds (ex UNIX) or carriage unit CharFile; { The TCharFile is used to read lines from a text file. Using ReadLine with a TCharFile is like Original author: Matthias Bolliger Quote} type { Read a line from a file. Lines are separated by any number implementation procedure ReadLine(var filein: TCharFile; var strin: string); end. |
Joseph M. Da
![]() Delphi Developer |
Tue, 29 Jun 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryPhil, I guess I could check this to make sure, but I just don't see where that Joe, Phil Eldridge <peldr...@voyager.co.nz> wrote in article Quote> Hi |
Norman Sigarlaki
![]() Delphi Developer |
Sun, 04 Jul 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryHad the same problem, check the following: Check if you use string-type variables in the readln statement. If you do, Norman Sigarlakie |
Joseph M. Da
![]() Delphi Developer |
Sun, 11 Jul 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryNorman, Unfortunately I can't do this. My file has a record length of 3500 Joe, Norman Sigarlakie <g...@worldaccess.nl> wrote in article Quote> Had the same problem, check the following: |
Norman Sigarlaki
![]() Delphi Developer |
Wed, 14 Jul 1999 03:00:00 GMT
Re:Delphi I/O Eating all my MemoryIs it possible to cut your data into smaller parts ? ... HTH, Joseph M. Day schreef in artikel <01bc082e$90ccf400$6020fdcd@gangster2>... Quote> Norman, |