Re: General Question DBI

2001-09-24 Thread Anthony Scott
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

RE: General Question DBI

2001-09-24 Thread Sterin, Ilya
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

Re: General Question DBI

2001-09-24 Thread Anthony Scott
; 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 > > > > > >

RE: General Question DBI

2001-09-24 Thread Sterin, Ilya
; 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

General Question DBI

2001-09-24 Thread Anthony Scott
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