I think that if you go back and look at the original reply, he spelled
it "isdir"...;)
--Ben
k r fry wrote:
> Again, I apologise. Not knowing much about Python means that I don't
> know what needs to be provided. I meant it doesn't work in the same way
> that "istdir" didn't work.
>
> Here i
The inline iterator version fits very well with my sensibilities. The
problem that I have with fetchall is that sometimes you need to deal
with a very large dataset. Calling fetchall() on it will put the whole
thing in memory, which is no good. Better to iterate over it one row at
a time, IM