Author: timbo Date: Mon Jan 2 11:48:21 2012 New Revision: 15064 Modified: dbi/trunk/Changes dbi/trunk/lib/DBI/Profile.pm
Log: Added note to DBI::Profile about async queries (Marcel Grünauer). Modified: dbi/trunk/Changes ============================================================================== --- dbi/trunk/Changes (original) +++ dbi/trunk/Changes Mon Jan 2 11:48:21 2012 @@ -6,7 +6,7 @@ =cut -=head2 Changes in DBI 1.617 (svn rXXX) +=head2 Changes in DBI 1.617 (svn r15064) 2nd January 2012 Fixed ParamTypes example in the pod (Martin J. Evans) Fixed the definition of ArrayTupleStatus and remove confusion over @@ -28,6 +28,7 @@ Added some more fetchall_arrayref(..., $maxrows) tests (Tim Bunce) Clarified docs for fetchall_arrayref called on an inactive handle. Clarified docs for clone method (Tim Bunce) + Added note to DBI::Profile about async queries (Marcel Gr�nauer). Reserved spatialite_ as a driver prefix for DBD::Spatialite Reserved mo_ as a driver prefix for DBD::MO Updated link to the SQL Reunion 95 docs, RT69577 (Ash Daminato) Modified: dbi/trunk/lib/DBI/Profile.pm ============================================================================== --- dbi/trunk/lib/DBI/Profile.pm (original) +++ dbi/trunk/lib/DBI/Profile.pm Mon Jan 2 11:48:21 2012 @@ -651,6 +651,9 @@ DBI::PurePerl does not support profiling (though it could in theory). +For asynchronous queries, time spent while the query is running on the +backend is not counted. + A few platforms don't support the gettimeofday() high resolution time function used by the DBI (and available via the dbi_time() function). In which case you'll get integer resolution time which is mostly useless.
