Re: fetchall_hashref() - does/will it exist?

2001-07-16 Thread Ronald J Kimball
On Sun, Jul 15, 2001 at 09:15:02PM +0100, Tim Bunce wrote: On Sat, Jul 14, 2001 at 05:00:11PM -0700, Alex Algard wrote: It was a mistake. I've deleted it now. Use... $ary_ref = $sth-fetchall_arrayref( {} ); That's actually what I'm doing now. My concern is that using

Re: fetchall_hashref() - does/will it exist?

2001-07-16 Thread Tim Bunce
On Mon, Jul 16, 2001 at 09:46:38AM -0400, Ronald J Kimball wrote: On Sun, Jul 15, 2001 at 09:15:02PM +0100, Tim Bunce wrote: On Sat, Jul 14, 2001 at 05:00:11PM -0700, Alex Algard wrote: It was a mistake. I've deleted it now. Use... $ary_ref = $sth-fetchall_arrayref( {} );

Re: fetchall_hashref() - does/will it exist?

2001-07-16 Thread Tim Bunce
: Tim Bunce; Alex Algard; dbi-users Subject: Re: fetchall_hashref() - does/will it exist? On Mon, Jul 16, 2001 at 09:46:38AM -0400, Ronald J Kimball wrote: On Sun, Jul 15, 2001 at 09:15:02PM +0100, Tim Bunce wrote: On Sat, Jul 14, 2001 at 05:00:11PM -0700, Alex Algard wrote

Re: fetchall_hashref() - does/will it exist?

2001-07-15 Thread Bart Lateur
On Sat, 14 Jul 2001 17:00:11 -0700, Alex Algard wrote: So please consider adding fetchall_hashref() to DBI. Untested code: package DBD::_::st; sub fetchall_hashref { splice @_, 1, 0, {}; fetchall_arrayref; } -- Bart.

Re: fetchall_hashref() - does/will it exist?

2001-07-15 Thread Tim Bunce
On Sat, Jul 14, 2001 at 05:00:11PM -0700, Alex Algard wrote: It was a mistake. I've deleted it now. Use... $ary_ref = $sth-fetchall_arrayref( {} ); That's actually what I'm doing now. My concern is that using fetchall_arrayref() by passing an anonymous hash as an argument is

RE: fetchall_hashref() - does/will it exist?

2001-07-15 Thread Neil Lunn
Check your installation. It is definately there. --Neil -Original Message- From: Alex Algard [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 14, 2001 9:16 AM To: [EMAIL PROTECTED] Subject: fetchall_hashref() - does/will it exist? I just downloaded DBI 1.18, and although

RE: fetchall_hashref() - does/will it exist?

2001-07-14 Thread Alex Algard
[mailto:[EMAIL PROTECTED]] Sent: Saturday, July 14, 2001 12:32 PM To: Alex Algard Cc: dbi-users; Tim.Bunce Subject: Re: fetchall_hashref() - does/will it exist? On Fri, Jul 13, 2001 at 04:20:59PM -0700, Alex Algard wrote: I just downloaded DBI 1.18, and although the fetchall_hashref method

fetchall_hashref() - does/will it exist?

2001-07-13 Thread Alex Algard
I just downloaded DBI 1.18, and although the fetchall_hashref method is mentioned in the documentation, it doesn't appear to exist in the code. Is this is an oversight? In any case, will this method be included in the next version of DBI, and if so, is that expected to be soon? Thanks, Alex

fetchall_hashref() - does/will it exist?

2001-07-13 Thread Alex Algard
I just downloaded DBI 1.18, and although the fetchall_hashref method is mentioned in the documentation, it doesn't appear to exist in the code. Is this is an oversight? In any case, will this method be included in the next version of DBI, and if so, is that expected to be soon? Thanks, Alex