| Filename | /usr/lib/x86_64-linux-gnu/perl5/5.20/DBI/Const/GetInfoType.pm |
| Statements | Executed 15 statements in 3.60ms |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 3.28ms | 3.28ms | DBI::Const::GetInfoType::BEGIN@45 |
| 1 | 1 | 1 | 548µs | 548µs | DBI::Const::GetInfoType::BEGIN@44 |
| 1 | 1 | 1 | 16µs | 24µs | DBI::Const::GetInfoType::BEGIN@12 |
| 1 | 1 | 1 | 13µs | 47µs | DBI::Const::GetInfoType::BEGIN@16 |
| 1 | 1 | 1 | 4µs | 4µs | DBI::Const::GetInfoType::BEGIN@14 |
| 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 | |||||
| 10 | package DBI::Const::GetInfoType; | ||||
| 11 | |||||
| 12 | 2 | 46µs | 2 | 32µs | # spent 24µs (16+8) within DBI::Const::GetInfoType::BEGIN@12 which was called:
# once (16µs+8µs) by DBD::mysql::dr::BEGIN@113 at line 12 # spent 24µs making 1 call to DBI::Const::GetInfoType::BEGIN@12
# spent 8µs making 1 call to strict::import |
| 13 | |||||
| 14 | 2 | 32µs | 1 | 4µ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 # spent 4µs making 1 call to DBI::Const::GetInfoType::BEGIN@14 |
| 15 | |||||
| 16 | 2 | 100µs | 2 | 80µs | # spent 47µs (13+34) within DBI::Const::GetInfoType::BEGIN@16 which was called:
# once (13µs+34µs) by DBD::mysql::dr::BEGIN@113 at line 16 # spent 47µs making 1 call to DBI::Const::GetInfoType::BEGIN@16
# spent 34µs making 1 call to vars::import |
| 17 | |||||
| 18 | 1 | 13µs | @ISA = qw(Exporter); | ||
| 19 | 1 | 500ns | @EXPORT = qw(%GetInfoType); | ||
| 20 | |||||
| 21 | my | ||||
| 22 | 1 | 500ns | $VERSION = "2.008697"; | ||
| 23 | |||||
| 24 | =head1 NAME | ||||
| 25 | |||||
| 26 | DBI::Const::GetInfoType - Data describing GetInfo type codes | ||||
| 27 | |||||
| 28 | =head1 SYNOPSIS | ||||
| 29 | |||||
| 30 | use DBI::Const::GetInfoType; | ||||
| 31 | |||||
| 32 | =head1 DESCRIPTION | ||||
| 33 | |||||
| 34 | Imports a %GetInfoType hash which maps names for GetInfo Type Codes | ||||
| 35 | into their corresponding numeric values. For example: | ||||
| 36 | |||||
| 37 | $database_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} ); | ||||
| 38 | |||||
| 39 | The interface to this module is new and nothing beyond what is | ||||
| 40 | written here is guaranteed. | ||||
| 41 | |||||
| 42 | =cut | ||||
| 43 | |||||
| 44 | 2 | 521µs | 1 | 548µs | # spent 548µs within DBI::Const::GetInfoType::BEGIN@44 which was called:
# once (548µs+0s) by DBD::mysql::dr::BEGIN@113 at line 44 # spent 548µs making 1 call to DBI::Const::GetInfoType::BEGIN@44 |
| 45 | 2 | 2.80ms | 1 | 3.28ms | # spent 3.28ms within DBI::Const::GetInfoType::BEGIN@45 which was called:
# once (3.28ms+0s) by DBD::mysql::dr::BEGIN@113 at line 45 # spent 3.28ms making 1 call to DBI::Const::GetInfoType::BEGIN@45 |
| 46 | |||||
| 47 | 1 | 81µs | %GetInfoType = | ||
| 48 | ( | ||||
| 49 | %DBI::Const::GetInfo::ANSI::InfoTypes # liable to change | ||||
| 50 | , %DBI::Const::GetInfo::ODBC::InfoTypes # liable to change | ||||
| 51 | ); | ||||
| 52 | |||||
| 53 | 1 | 4µs | 1; |