Re: Memory leak!!

Поиск
Список
Период
Сортировка
От Ian Barwick
Тема Re: Memory leak!!
Дата
Msg-id 200304090838.09883.barwick@gmx.net
обсуждение исходный текст
Ответ на Re: Memory leak!!  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Memory leak!!
Список pgsql-interfaces
On Wednesday 09 April 2003 06:58, Tom Lane wrote:
> "P.N.Guru Prasad" <pnguruji@yahoo.com> writes:
> > while (1) {
> >   print "sql executed and returned :", $Dbh->prepare("select user_id from
> > users limit 1")->execute, "\n";
> > }
>
> I'm not a DBI user, but I'd kinda expect that executing a query would
> result in an object holding the results from that query.  Don't you need
> to do something to close/delete the result objects you're generating?

Does

while (1) { my $sth = $Dbh->prepare("select user_id from users limit 1"); print "sql executed and returned :",
$sth->execute,"\n";  $sth->finish(); 
}

make any difference?

If not try asking the dbi-users list,  dbi-users@perl.org
( http://lists.perl.org/showlist.cgi?name=dbi-users )

Ian Barwick
barwick@gmx.net



В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Joe Conway
Дата:
Сообщение: Re: [HACKERS] More protocol discussion: breaking down
Следующее
От: "Ray Cheng"
Дата:
Сообщение: Listen/Notify Application using libpq++ library