1994年发布的DBI是Perl语言连接关系性数据库的标准。可以从dbi.perl.org获得DBI的源代码和文档。
IBM在1995年发布了对于Perl的DB2驱动,这个驱动是符合DBI标准的,在Perl里这个驱动称为DBD::DB2 。可以从ibm.com/software/db2/perl获得DBD::DB2驱动的最新信息。
注意:最近的DB2驱动需要至少Perl 5.005_03和DBI 1.21或以上的版本。
2. 准备环境
步骤如下
(1)安装Perl语言环境
Windows下可以从www.activestate.com获得Perl的安装包。
安装后可以使用perl -v看看Perl的版本信息。
DBI驱动和DBD::DB2驱动都是作为Perl的附加模块使用ppm工具安装的。安装方法参见(2), (3),安装时最好先去ibm.com/software/db2/perl上看看ppm后面的参数有没有变化。
(2)安装DBI驱动
ppm install http://ftp.esoftmatic.com/outgoing/DBI/5.8.4/DBI.ppd
(3)安装DBD::DB2驱动
ppm install http://ftp.esoftmatic.com/outgoing/DBI/5.8.4/DBD-DB2.ppd
(4)安装DB2 runtime client
3. 使用Perl连接DB2
(1)使用DBI函数DBI->data_sources 来扫描DB2数据库目录并返回一个包含了有效数据源名称(DSN)的数组。
----------------datasources.pl-------------
#!/usr/lib/perl -w
#
# This perl script prints the list of cataloged DB2 data-sources
#
use DBI;
use DBD::DB2;
use DBD::DB2::Constants;
print "Operating Systems = $^O ";
print "Perl Binary = $^X ";
print "Perl Version = $] ";
print "DBI Version = $DBI::VERSION ";
print "DBD::DB2 Version = $DBD::DB2::VERSION ";
my @DB2DataSources = DBI->data_sources("DB2");
print "Available DB2 DSNs: ";
foreach my $dsn ( @DB2DataSources )
{
print " $dsn ";
}
-------------------END----------------------
(2)获取db2数据库的信息
----------datasourceInfo.pl--------------------------
#!/usr/lib/perl -w
#
# This perl script prints the information DB2 database
#
use DBI;
use DBD::DB2;
use DBD::DB2::Constants;
my $dsn = 'dbi:DB2:SAMPLE';
my $uid = 'henry';
my $pwd = 'happyday';
my $dbh = DBI->connect( $dsn, $uid, $pwd ) || die "$DBI::errstr";
print "Database Connection Information ";
printf( "Server Instance : %s ", $dbh->get_info( SQL_SERVER_NAME ) );
printf( "Database Server : %s ", $dbh->get_info( SQL_DBMS_NAME ) );
printf( "Database Version : %s ", $dbh->get_info( SQL_DBMS_VER ) );
printf( "Database Alias : %s ", $dbh->get_info( SQL_DATA_SOURCE_NAME ) );
printf( "Database Codepage : %s ", $dbh->get_info( 2519 ) );
printf( "Application Codepage: %s ", $dbh->get_info( 2520 ) );
printf( "Authoriztion Id : %s ", $dbh->get_info( SQL_USER_NAME ) );
printf( "Max Idntifier Len : %s ", $dbh->get_info( SQL_MAX_IDENTIFIER_LEN ) );
printf( "Max Table Name Len : %s ", $dbh->get_info( SQL_MAX_TABLE_NAME_LEN ) );
printf( "Max Index Size : %s ", $dbh->get_info( SQL_MAX_INDEX_SIZE ) );
printf( "Max Columns in Table: %s ", $dbh->get_info( SQL_MAX_COLUMNS_IN_TABLE ) );
-------------------END----------------------
(3)获取db2数据库的元数据(比如, 表结构)
----------tableinfo.pl--------------------------
#!/usr/lib/perl -w
#
# This perl script prints the information of cataloged DB2 table
#
use DBI;
use DBD::DB2;
use DBD::DB2::Constants;
$dsn = 'dbi:DB2:SAMPLE';
$uid = 'henry';
$pwd = 'happyday';
# Connect to the SAMPLE database
$dbh = DBI->connect( $dsn, $uid, $pwd ) || die "$DBI::errstr";
# Get the tables for schema HENRY
$sth = $dbh->table_info( { 'TABLE_CSHEM' => "HENRY" } );
$table_counter = 0;
while ( @row = $sth->fetchrow_array )
{
$catalog = $row[0];
$schema = $row[1];
$table = $row[2];
$table_counter++;
printf( "Table %d %s ", $table_counter, $table );
# Now get the column information for this table
$sth_col = $dbh->column_info( $catalog, $schema, $table, '%' );
if( $sth_col )
{
while( @row_col = $sth_col->fetchrow_array )
{
# @row_col has a lot more information. I'll just take
# these three fields as an example
$column_name = $row_col[3];
$type_name = $row_col[5];
$column_size = $row_col[6];
printf( " %-24s%s(%s) ", $column_name, $type_name, $column_size );
}
$sth_col->finish();
}
}
$sth->finish();
$dbh->disconnect;
-------------------END----------------------
(4)执行SQL
----------executesql.pl--------------------------
#!/usr/lib/perl -w
#
# This perl script manipulate DB2 table
#
use DBI;
use DBD::DB2;
use DBD::DB2::Constants;
$dsn = 'dbi:DB2:SAMPLE';
$uid = 'henry';
$pwd = 'happyday';
# Connect to the SAMPLE database
$dbh = DBI->connect( $dsn, $uid, $pwd ) || die "$DBI::errstr";
# Prepare our insert statement
$sth = $dbh->prepare( "INSERT INTO sales VALUES('2005-06-25', 'Tom', 'Beijing', 15)");
$sth->execute();
$sth->finish();
$dbh->disconnect;
-------------------END----------------------
本文是摘抄杂志里的一文,原作者Michael Hoy & Grant Hutchison
原文参见http://www.db2mag.com/story/showArticle.jhtml?articleID=59301551
相关推荐
要使用Perl连接数据库,首先需要安装相应的DBD驱动,例如,如果你需要连接MySQL,就需要安装DBD::mysql模块。这通常通过CPAN(Comprehensive Perl Archive Network)来完成,运行`cpan DBD::mysql`命令即可自动下载...
简单的perl脚本。利用perl连接数据库,建立表并插入数据。
or die "无法连接数据库: $DBI::errstr\n"; my $sth = $dbh->prepare("SELECT * FROM table"); $sth->execute(); while (my @row = $sth->fetchrow_array()) { print join(", ", @row), "\n"; } $sth->finish()...
这部分内容可能涵盖DBI(Database Interface)模块的使用,它是Perl连接数据库的标准接口,通过DBD(Database Driver)子模块实现具体数据库的连接。 此外,Perl的错误处理和调试技巧也是教程不可或缺的部分。理解...
Perl 连接数据库的思路都是: 1)使用DBI模块; 2)创建数据库连接句柄dbh; 3)利用dbh创建语句句柄sth; 4)利用sth执行sql语句; 5)利用sth处理数据。 如连接Oracle: my $dbh=DBI->connect(DBI:...
- **数据库访问**: 讨论了如何使用Perl连接数据库并执行查询,以及如何处理返回的数据。 - **文本处理**: 详细解释了如何使用Perl进行文本格式化和分析,例如邮件处理和文本概要生成。 ##### 编程技巧 - **作用域与...
# 连接数据库,如果无法连接,程序会终止并显示错误信息 my $dbh = DBI->connect("dbi:ODBC:$DSN",'','') or die "Can't connect to Database: $DBI::errstr"; # 准备SQL查询,获取table1中的所有记录 my $sth = $...
4. **Perl DBI API**:在《附录G Perl DBI API 参考.pdf》中,会介绍Perl的DBI模块,这是Perl连接数据库的标准接口,包括如何创建数据库句柄、执行SQL、处理结果和错误处理等。 5. **C/C++编程**:虽然没有专门的...
Perl DBI(Database Independent Interface)模块是Perl连接数据库的标准接口,它提供了一种统一的方式来与各种数据库系统交互,包括MySQL。DBI允许我们创建数据库句柄,执行SQL查询,处理结果集等。使用DBI,我们...
- **数据库访问**:通过Perl连接数据库并执行SQL查询,实现数据的增删改查操作。 - **Web爬虫**:构建网络爬虫来抓取网页数据。 - **文本处理**:处理各种格式的文本文件,进行数据清洗和分析。 - **图形生成**:...
5. **编写Perl脚本**:现在你可以使用DBI模块编写Perl脚本来连接和操作数据库了。基本的连接代码如下: ```perl use DBI; my $dbh = DBI->connect("dbi:mysql:database=your_database", "username", "password") ...
本文将深入探讨如何使用Perl来操作LDAP数据库。 首先,你需要了解Perl中的Net::LDAP模块,这是Perl与LDAP服务器交互的核心工具。安装这个模块通常可以通过CPAN(Comprehensive Perl Archive Network)完成,命令行...
die("连接数据库失败:" . mysql_error()); } mysql_select_db("database_name", $conn); // 执行数据库查询语句 $result = mysql_query("SELECT * FROM table_name"); while ($row = mysql_fetch_array($...
描述中提到,DBI是perl连接数据库的最佳方法,它支持多种数据库系统,如Oracle、Sybase、MySQL和DB2。这表明DBI具有广泛的兼容性,无论是企业级的大型数据库还是开源的小型数据库,都能通过DBI进行统一的接口操作。...
本文将详细讲解如何通过Perl的DBI模块连接到MySQL数据库,并进行基本的数据操作。 Perl的DBI(Database Interface)模块提供了一个标准的接口,允许Perl程序与各种数据库系统交互,包括MySQL。以下是一个简单的示例...
对于MySQL,DBI(Database Interface)是Perl连接数据库的标准接口,DBD::MySQL是其对应的MySQL驱动。而Zerba(也称为Apache Lucene)是一种全文搜索引擎,Perl中的Search::Zerba模块提供了与Zerba交互的接口。抓取...
您将学习如何安装和使用 IBM DB2 Universal Database, Personal Developer\\\\\\\'s Edition 的 Perl 接口。您还将通过示例学习如何查询 DB2 Personal Developer\\\\\\\'s Edition 的样本数据库。
DBI提供了一个统一的机制,允许R语言用户连接和操作包括MySQL、Oracle等多种数据库,使得数据的导入导出和查询执行变得简单高效。 DBI定义了一组类和方法,这些类和方法与Perl的DBI、Java的JDBC、Python的DB-API...
本文将详细介绍在特定系统环境下,如何解决Perl连接MySQL时可能出现的问题及安装过程。 首先,确保你的系统上已经安装了MySQL客户端。通过`rpm -qa | grep MySQL`命令可以查询已安装的MySQL相关组件。如果版本过低...