← Index
NYTProf Performance Profile   « line view »
For svc/members/upsert
  Run on Tue Jan 13 11:50:22 2015
Reported on Tue Jan 13 12:09:51 2015

Filename/usr/lib/x86_64-linux-gnu/perl5/5.20/DBI/Const/GetInfoType.pm
StatementsExecuted 15 statements in 5.85ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114.32ms4.32msDBI::Const::GetInfoType::::BEGIN@45DBI::Const::GetInfoType::BEGIN@45
1111.79ms1.79msDBI::Const::GetInfoType::::BEGIN@44DBI::Const::GetInfoType::BEGIN@44
11114µs28µsDBI::Const::GetInfoType::::BEGIN@12DBI::Const::GetInfoType::BEGIN@12
1117µs56µsDBI::Const::GetInfoType::::BEGIN@16DBI::Const::GetInfoType::BEGIN@16
1114µs4µ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
12225µs242µs
# spent 28µs (14+14) within DBI::Const::GetInfoType::BEGIN@12 which was called: # once (14µs+14µs) by DBD::mysql::dr::BEGIN@113 at line 12
use strict;
# spent 28µs making 1 call to DBI::Const::GetInfoType::BEGIN@12 # spent 14µs making 1 call to strict::import
13
14230µs14µs
# spent 4µs within DBI::Const::GetInfoType::BEGIN@14 which was called: # once (4µs+0s) by DBD::mysql::dr::BEGIN@113 at line 14
use Exporter ();
# spent 4µs making 1 call to DBI::Const::GetInfoType::BEGIN@14
15
16255µs2104µs
# spent 56µs (7+48) within DBI::Const::GetInfoType::BEGIN@16 which was called: # once (7µs+48µs) by DBD::mysql::dr::BEGIN@113 at line 16
use vars qw(@ISA @EXPORT @EXPORT_OK %GetInfoType);
# spent 56µs making 1 call to DBI::Const::GetInfoType::BEGIN@16 # spent 48µs making 1 call to vars::import
17
1819µs@ISA = qw(Exporter);
191400ns@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
4421.76ms11.79ms
# spent 1.79ms within DBI::Const::GetInfoType::BEGIN@44 which was called: # once (1.79ms+0s) by DBD::mysql::dr::BEGIN@113 at line 44
use DBI::Const::GetInfo::ANSI (); # liable to change
# spent 1.79ms making 1 call to DBI::Const::GetInfoType::BEGIN@44
4523.91ms14.32ms
# spent 4.32ms within DBI::Const::GetInfoType::BEGIN@45 which was called: # once (4.32ms+0s) by DBD::mysql::dr::BEGIN@113 at line 45
use DBI::Const::GetInfo::ODBC (); # liable to change
# spent 4.32ms making 1 call to DBI::Const::GetInfoType::BEGIN@45
46
47158µ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;