in reply to Re: From string with variable Address to actual referencing that address? (core crypting problem)
in thread From string with variable Address to actual referencing that address? (core crypting problem)

THANKS BrowserUk!!!

that exactly what i was looking for. To be honest i didnt know of the existence of the XS and the posibilites of perl handle dll, with this i'll make the binaries dlls with the connection access as you suggest.

While its still can be "hacked", i'm more than sure this would be accepted as a "safe" procedure.

I just want to thank everyone for the professional advices and help, was greatly appreciate it.

Regards
  • Comment on Re^2: From string with variable Address to actual referencing that address? (core crypting problem)

Replies are listed 'Best First'.
Re^3: From string with variable Address to actual referencing that address? (core crypting problem)
by ikegami (Patriarch) on Apr 20, 2011 at 03:03 UTC
    my $old = \&DBI::connect; sub DBI::connect { print("@_\n"); goto &$old; }