Hi,
I want to send a dynamicly generated csv file to the browser using a
Catalyst app, but without storing the whole content in a variable before
sending it.
Please tell me how can I do this with Catalyst.
I have something like:
while (...) {
# and here I want to add a new line to the csv file and also send it
directly to the browser
}
Thank you.
Octavian