Re: can't flush buffer?

2000-12-17 Thread quagly
oops, typos in my message. In fact, I have done just as you suggest, but it doesn't work. Thanks, ~quagly

Re: can't flush buffer?

2000-12-17 Thread quagly
Yes, I have read all of that. That is what I am following. It just doesn't work. ~quagly

Re: can't flush buffer?

2000-12-17 Thread Stas Bekman
On Sun, 17 Dec 2000, quagly wrote: > > As a test of my new mod_perl abilities I wrote a trivial SQL client. > It works, but if the query returns many rows then it takes a while. > As a first step I thought I would call $r->rflush; with every row > printed but > this does not work. I also tried

Re: can't flush buffer?

2000-12-17 Thread Ajit Deshpande
On Sun, Dec 17, 2000 at 09:54:38AM -0800, quagly wrote: > > As a test of my new mod_perl abilities I wrote a trivial SQL client. > It works, but if the query returns many rows then it takes a while. > As a first step I thought I would call $r->rflush; with every row > printed but > this does not

can't flush buffer?

2000-12-17 Thread quagly
As a test of my new mod_perl abilities I wrote a trivial SQL client. It works, but if the query returns many rows then it takes a while. As a first step I thought I would call $r->rflush; with every row printed but this does not work. I also tried $|=0; with no effect. Here is the full module,