我在使用 DBI 模块连接到我的数据库时遇到了一些麻烦。我有一个属性文件,其中指定我是否要通过简单的database=oracle
或database=postgres
. 我的属性文件是使用 Config::Tiny 模块设置的,我的变量设置如下:
my $database = $config->{myDB}->{database};
...
我不明白的是,即使这适用于我的所有变量,如果我尝试这样的事情来连接到属性文件中指定的任何数据库......
if($database eq "oracle"){
my $dbh = DBI->connect("dbi:Oracle:host=abc123-server;sid=XE;port=1521","User","Pass");
}
elsif($database eq "postgres"){
my $dbh = DBI->connect("dbi:Pg:dbname=pepperoni;host=789xyz-server;port=5444;","Foo","Bar");
}else{
print "Could not connect to a database";
}
...我最终遇到了这些错误:
Global symbol "$dbh" requires explicit package name at supportvuloop.pl line 70.
Global symbol "$dbh" requires explicit package name at reportloop.pl line 80.
Global symbol "$dbh" requires explicit package name at reportloop.pl line 81.
Global symbol "$dbh" requires explicit package name at reportloop.pl line 82.
Global symbol "$dbh" requires explicit package name at reportloop.pl line 88.
当它们不是 if 条件的一部分时,我可以很好地连接到任何一个数据库,任何想法为什么它现在会导致错误?