> > session would be my first choice since I don't cache the data because > I don't think there's any valid length of time to cache the data. I've > been meaning to move up to the latest trunk. I'll try what you're > suggesting with session.
Even with the current stable version, you could store a Rows object in the session, and upon retrieval convert it to a list of Row objects as follows: from dal import Row rows = [Row(row) for row in session.myrows] Anthony

