← Index
NYTProf Performance Profile   « line view »
For /home/ss5/perl5/perlbrew/perls/perl-5.22.0/bin/benchmarkanything-storage
  Run on Mon Jan 29 16:55:34 2018
Reported on Mon Jan 29 16:57:07 2018

Filename/home/ss5/perl5/perlbrew/perls/perl-5.22.0/lib/site_perl/5.22.0/x86_64-linux/DBI/Const/GetInfoType.pm
StatementsExecuted 15 statements in 227µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.77ms1.78msDBI::Const::GetInfoType::::BEGIN@45DBI::Const::GetInfoType::BEGIN@45
111299µs307µsDBI::Const::GetInfoType::::BEGIN@44DBI::Const::GetInfoType::BEGIN@44
1118µs10µsDBI::Const::GetInfoType::::BEGIN@12DBI::Const::GetInfoType::BEGIN@12
1116µs37µsDBI::Const::GetInfoType::::BEGIN@16DBI::Const::GetInfoType::BEGIN@16
1112µs2µsDBI::Const::GetInfoType::::BEGIN@14DBI::Const::GetInfoType::BEGIN@14
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# $Id: GetInfoType.pm 8696 2007-01-24 23:12:38Z Tim $
2#
3# Copyright (c) 2002 Tim Bunce Ireland
4#
5# Constant data describing info type codes for the DBI getinfo function.
6#
7# You may distribute under the terms of either the GNU General Public
8# License or the Artistic License, as specified in the Perl README file.
9
10package DBI::Const::GetInfoType;
11
12214µs211µs
# spent 10µs (8+1) within DBI::Const::GetInfoType::BEGIN@12 which was called: # once (8µs+1µs) by DBD::mysql::dr::BEGIN@119 at line 12
use strict;
# spent 10µs making 1 call to DBI::Const::GetInfoType::BEGIN@12 # spent 1µs making 1 call to strict::import
13
14214µs12µs
# spent 2µs within DBI::Const::GetInfoType::BEGIN@14 which was called: # once (2µs+0s) by DBD::mysql::dr::BEGIN@119 at line 14
use Exporter ();
# spent 2µs making 1 call to DBI::Const::GetInfoType::BEGIN@14
15
16237µs268µs
# spent 37µs (6+31) within DBI::Const::GetInfoType::BEGIN@16 which was called: # once (6µs+31µs) by DBD::mysql::dr::BEGIN@119 at line 16
use vars qw(@ISA @EXPORT @EXPORT_OK %GetInfoType);
# spent 37µs making 1 call to DBI::Const::GetInfoType::BEGIN@16 # spent 31µs making 1 call to vars::import
17
1815µs@ISA = qw(Exporter);
191200ns@EXPORT = qw(%GetInfoType);
20
21my
221200ns$VERSION = "2.008697";
23
24=head1 NAME
25
26DBI::Const::GetInfoType - Data describing GetInfo type codes
27
28=head1 SYNOPSIS
29
30 use DBI::Const::GetInfoType;
31
32=head1 DESCRIPTION
33
34Imports a %GetInfoType hash which maps names for GetInfo Type Codes
35into their corresponding numeric values. For example:
36
37 $database_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
38
39The interface to this module is new and nothing beyond what is
40written here is guaranteed.
41
42=cut
43
44256µs1307µs
# spent 307µs (299+8) within DBI::Const::GetInfoType::BEGIN@44 which was called: # once (299µs+8µs) by DBD::mysql::dr::BEGIN@119 at line 44
use DBI::Const::GetInfo::ANSI (); # liable to change
# spent 307µs making 1 call to DBI::Const::GetInfoType::BEGIN@44
45265µs11.78ms
# spent 1.78ms (1.77+9µs) within DBI::Const::GetInfoType::BEGIN@45 which was called: # once (1.77ms+9µs) by DBD::mysql::dr::BEGIN@119 at line 45
use DBI::Const::GetInfo::ODBC (); # liable to change
# spent 1.78ms making 1 call to DBI::Const::GetInfoType::BEGIN@45
46
47132µs%GetInfoType =
48(
49 %DBI::Const::GetInfo::ANSI::InfoTypes # liable to change
50, %DBI::Const::GetInfo::ODBC::InfoTypes # liable to change
51);
52
5313µs1;