y Scott [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, September 24, 2001 5:49 PM
> > To: [EMAIL PROTECTED]
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: General Question DBI
> >
> >
> > No, not a diffrent process but will the current process hang due
> > t
ll to it, will generate a perl
error stating that it can't call a method on an undefined object.
Ilya
> -Original Message-
> From: Anthony Scott [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 24, 2001 5:49 PM
> To: [EMAIL PROTECTED]
> Cc: [EMAIL PROTECTED]
> Su
; different process is created:-?
>
> Ilya
>
> > -Original Message-
> > From: Anthony Scott [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, September 24, 2001 4:39 PM
> > Cc: [EMAIL PROTECTED]
> > Subject: General Question DBI
> >
> >
> >
; From: Anthony Scott [mailto:[EMAIL PROTECTED]]
> Sent: Monday, September 24, 2001 4:39 PM
> Cc: [EMAIL PROTECTED]
> Subject: General Question DBI
>
>
>
>
> if I have the following code
>
>
> sub test {
>
>
> $dbh =get_dbh;
>
>
>
> test1($dbh,$somed
if I have the following code
sub test {
$dbh =get_dbh;
test1($dbh,$somedata);
close($dbh);
}
sub test1 {
my ($dbh,$data)=@_;
#sql code
}
if the $sql code fails in subroutine "test1" does it causes a open process
since I defined $dbh as local?
Anthony Scott