DBD::Sponge: When malloc throws in the sponge

2005-03-16 Thread Steffen Goeldner
Currently, a result set has to be completely materialized on the client before it can be fetched via DBD::Sponge: my $cursor = ... my $rows = []; while ( !$cursor-eof ) { my $row = [ map { $cursor-fields-... $cursor-next; push @$rows, $row; } $cursor-close;

ANNOUNCE: IBM Informix Database Driver for Perl DBI Version 2005.01 (2005-03-14) released

2005-03-16 Thread Jonathan Leffler
IBM Informix Database Driver for Perl DBI Version 2005.01 (2005-03-14) has been uploaded to CPAN. IBM Informix Database Driver for Perl (also known as DBD::Informix) is the driver code that enables Perl 5.6.1 or later to access Informix databases via the DBI module (but if you are not already

DBI 1.48: Warning: something's wrong at t/zvpp_11fetch.t line 3.

2005-03-16 Thread Steffen Goeldner
Looks like t/11fetch.t should return a true value. Patch attached. Steffen Index: t/11fetch.t === --- t/11fetch.t (revision 929) +++ t/11fetch.t (working copy) @@ -103,5 +103,6 @@ Benchmark::timethis(10, sub { go([EMAIL

Re: DBI 1.48: Warning: something's wrong at t/zvpp_11fetch.t line 3.

2005-03-16 Thread Tim Bunce
Ah, phooey. Guess I'll have to work on finishing the callbaks now ;) Thanks Steffen. Tim. On Wed, Mar 16, 2005 at 01:35:23PM +0100, Steffen Goeldner wrote: Looks like t/11fetch.t should return a true value. Patch attached. Steffen Index: t/11fetch.t

Re: DBI 1.48: Warning: something's wrong at t/zvpp_11fetch.t line 3.

2005-03-16 Thread David Wheeler
On Mar 16, 2005, at 7:57 AM, Tim Bunce wrote: Ah, phooey. Guess I'll have to work on finishing the callbaks now ;) W00t! Thanks Steffen. Steffan++; ;-) David