executing perl code stored in a database?
- by TheGNUGuy
Hey everyone,
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 the eval() function 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;
Thanks for the help!