print "GOT TITLE BEFORE: $title \n
";
$DB->table("ReadingGrabCache")->add( { title => $title, url => "Foo" });
my $test = $DB->table("ReadingGrabCache")->select ( { url => "Foo" })->fetchrow_hashref;
print "BEFORE RE-ENCODING: $test->{title} \n
";
$test->{title} = decode("utf-8",$test->{title});
print "AFTER RE-ENCODING: $test->{title} \n
";