
mackiew
Deleted
Oct 24, 2000, 6:28 PM
Post #3 of 4
(820 views)
|
|
Re: Connection refused !!! DBI module HELP !!
[In reply to]
|
Can't Post
|
|
I do can make inserts before this one. in fact, a lot of processes that are copies of this one, (created with "forks") are making insertions successfully. The problematic code is as follows: if (defined @pointerToARegistros) { foreach $pointerRegistro (@pointerToARegistros) { if (defined $pointerRegistro) { my $sth = $dbh->prepare("insert into TNS values ( ?, ?, ?, ?, ?, ? )"); $sth->execute( $pointerRegistro->{zona}, $pointerRegistro->{nombre_servidor}, $pointerRegistro->{orden}, $pointerRegistro->{transferencia}, $pointerRegistro->{nro_serie}, $pointerRegistro->{causa_inactividad}) ; } } } ------------ thank you so much...
|