getinfotype.pm

来自「Astercon2 开源软交换 2.2.0」· PM 代码 · 共 54 行

PM
54
字号
# $Id: GetInfoType.pm 2488 2006-02-07 22:24:43Z timbo $## Copyright (c) 2002  Tim Bunce  Ireland## Constant data describing info type codes for the DBI getinfo function.## You may distribute under the terms of either the GNU General Public# License or the Artistic License, as specified in the Perl README file.package DBI::Const::GetInfoType;use strict;use Exporter ();use vars qw(@ISA @EXPORT @EXPORT_OK %GetInfoType);@ISA = qw(Exporter);@EXPORT = qw(%GetInfoType);my$VERSION = sprintf "%d.%02d", '$Revision: 1.5 $ ' =~ /(\d+)\.(\d+)/;=head1 NAMEDBI::Const::GetInfoType - Data describing GetInfo type codes=head1 SYNOPSIS  use DBI::Const::GetInfoType;=head1 DESCRIPTIONImports a %GetInfoType hash which maps names for GetInfo Type Codesinto their corresponding numeric values. For example:  $database_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );The interface to this module is new and nothing beyond what iswritten here is guaranteed.=cutuse DBI::Const::GetInfo::ANSI ();	# liable to changeuse DBI::Const::GetInfo::ODBC ();	# liable to change%GetInfoType =(  %DBI::Const::GetInfo::ANSI::InfoTypes	# liable to change, %DBI::Const::GetInfo::ODBC::InfoTypes	# liable to change);1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?