http://www.perlmonks.org?node_id=994498


in reply to NYTProf and wait time

With most DBDs (you did not mention which you are using) the DBI::st::execute method will not be Perl code. It will most probably be XS (C code) and D::N does not profile C code. This applies to any XS module methods, not just DBI.

Replies are listed 'Best First'.
Re^2: NYTProf and wait time
by ibm1620 (Hermit) on Sep 19, 2012 at 22:55 UTC
    It's DBD::mysql. The CPAN page doesn't mention if it's XS or not, but I'd guess it probably is; if so, I can understand why it cannot be profiled. Thanks!