in reply to DBI use

First of all you should give us the error message! We have no visionary power to see what goes wrong!

But
my $Command = $1; # EXEC Command - defined earlier my $Request_id = $2;


must be:
my($Command,$Request_id) = @_;