- 论坛徽章:
- 0
|
如下子程序,无论我调用的SQL文件运行的是对还是错,返回的retcode都是0. (错误的应该返回非0)。
请问是什么原因?不得其解。
# ===========================
# run sql script: create sql file and run
# ===========================
sub runSqlScript
{
my $sqlScript = $_[0];
my $dbuser = $_[1];
my $dbpasswd = $_[2];
my $sqltempfile = getOSfilepath("$arg{'currentdir'}/install_sqltempfile.sql");
# create sql temp file
open (SQLTMPFILE,">$sqltempfile") || die ("Cannot open $sqltempfile");
print SQLTMPFILE $sqlScript;
close SQLTMPFILE || die "ERROR: Can not close file : $sqltempfile";;
my $retcode = system("sqlplus -s $dbuser/$dbpasswd \@$sqltempfile");
$retcode = $retcode/256;
# remove the sql temp file whatever may be the status of retcode.
unlink $sqltempfile if(-f $sqltempfile);
# return the status of the sql run.
return $retcode;
} |
|