Re: Pickling a database cursor?

2010-11-21 Thread John Nagle
On 11/20/2010 10:30 PM, Chris Rebert wrote: On Sat, Nov 20, 2010 at 10:08 PM, Navkirat Singhnavkir...@gmail.com wrote: Hi Guys, Is there any way to pickle a database cursor? I would like a persistent cursor over multiple HTTP requests. Any help would be awesome ! You can't. It's like a file

Pickling a database cursor?

2010-11-20 Thread Navkirat Singh
Hi Guys, Is there any way to pickle a database cursor? I would like a persistent cursor over multiple HTTP requests. Any help would be awesome ! Nav -- http://mail.python.org/mailman/listinfo/python-list

Re: Pickling a database cursor?

2010-11-20 Thread Chris Rebert
On Sat, Nov 20, 2010 at 10:08 PM, Navkirat Singh navkir...@gmail.com wrote: Hi Guys, Is there any way to pickle a database cursor? I would like a persistent cursor over multiple HTTP requests. Any help would be awesome ! You can't. It's like a file handle in that respect. Cheers, Chris --