Home : General : Perl Programming :

General: Perl Programming: Re: [PaulW] LWP::UserAgent Question: Edit Log

Here is the list of edits for this post
Re: [PaulW] LWP::UserAgent Question
There is no "default". What do you mean by that? This is just a snippet of available methods, which should answer your question.

Code:
$sth->fetch;
fetches the next row of data, returning an array reference with the field values

$sth->fetchrow_hashref
synonym for fetch.

$sth->fetchrow;
fetches the next row of data, returning an array with the field values.

$sth->fetchrow_array;
synonym for fetchrow.

It's just a synonym for another method. There is no default.

- wil

Last edited by:

Wil: Dec 4, 2001, 5:15 AM

Edit Log: