← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/getfix
  Run on Thu May 20 15:30:03 2010
Reported on Thu May 20 16:25:34 2010

File/wise/base/static/lib/perl5/site_perl/5.10.0/x86_64-linux-thread-multi/DBI/Const/GetInfoType.pm
Statements Executed20
Total Time0.005366 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
00000DBI::Const::GetInfoType::BEGIN

LineStmts.Exclusive
Time
Avg.Code
1# $Id: GetInfoType.pm 8696 2007-01-24 23:12:38Z timbo $
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
1233.3e-51.1e-5use strict;
# spent 11µs making 1 call to strict::import
13
1433.0e-51.0e-5use Exporter ();
15
1639.3e-53.1e-5use vars qw(@ISA @EXPORT @EXPORT_OK %GetInfoType);
# spent 125µs making 1 call to vars::import
17
1819.0e-69.0e-6@ISA = qw(Exporter);
1911.0e-61.0e-6@EXPORT = qw(%GetInfoType);
20
21my
2218.0e-68.0e-6$VERSION = sprintf("2.%06d", q$Revision: 8696 $ =~ /(\d+)/o);
23
24
25=head1 NAME
26
27DBI::Const::GetInfoType - Data describing GetInfo type codes
28
29=head1 SYNOPSIS
30
31 use DBI::Const::GetInfoType;
32
33=head1 DESCRIPTION
34
35Imports a %GetInfoType hash which maps names for GetInfo Type Codes
36into their corresponding numeric values. For example:
37
38 $database_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
39
40The interface to this module is new and nothing beyond what is
41written here is guaranteed.
42
43=cut
44
4530.001560.00052use DBI::Const::GetInfo::ANSI (); # liable to change
4630.003450.00115use DBI::Const::GetInfo::ODBC (); # liable to change
47
4810.000170.00017%GetInfoType =
49(
50 %DBI::Const::GetInfo::ANSI::InfoTypes # liable to change
51, %DBI::Const::GetInfo::ODBC::InfoTypes # liable to change
52);
53
5417.0e-67.0e-61;