According to CGI.pm docs, we can save state to any filehandle:
$query->save(FILEHANDLE)
I need to dump the whole lot as BLOB/TEXT to database, but can anyone suggest how I would go about this using DBI ? The following incorrect (!) code probably illustrates my need a bit clearer:
$dbh->do("UPDATE table SET field=?", undef,$query->save());