I'm using the HTTP::Cookies module in combo with LWP::UserAgent.
My script access a webpage and retrieves the cookie information.
I then use the as_string() method of HTTP::Cookies to save the
cookie info as a BLOB in a MySQL database.
I would like to be able
to retrieve the cookie info from the db and then create a new
HTTP::Cookies object with it. However, HTTP::Cookies only has a load() function that loads
cookie info from a file. Is there anyway to load the cookie information
from the db into a HTTP::Cookies object without first writing it to a file and then reading it from the file?
Thanks.