Hi,
I have tried to store some data in a perl program under the
__DATA__
mark, then to read from there using:
while(<DATA>) {
...
}
The program works when I run it as a .pl file, but if I create a .exe file
using perlapp, it doesn't read anything from <DATA>.
Is there something I can do to make it work?
I cannot put the data in a big array, because it is too much data (over 7
mb) and the program works very slow in that case.
Or is there other way of using a separate file which is included in the .exe
program, but it is not stored as a .txt file?
Thank you.
Teddy