Is it possible to save some Perl code in a database then retrieve it using a select
statement and then execute that Perl code? I have tried using eval, but that doesn't seem to work.
Here is what I'm trying right now and it doesn't seem to work:
my $temp = $qryResults[0];
print $temp."\n";
eval{"$temp"};
the output is $con->Disconnect();exit;