Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Re: Re: Speeding up the DBI

by diotalevi (Canon)
on Jul 14, 2003 at 19:39 UTC ( [id://274128]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Speeding up the DBI
in thread Speeding up the DBI

I had been under the impression that cursors don't work through DBD::Pg. I'm mistaken?

Replies are listed 'Best First'.
Re: Re: Re: Re: Speeding up the DBI
by tantarbobus (Hermit) on Jul 14, 2003 at 20:04 UTC
    $dbh->do(q{DECLARE imprecator CURSOR FOR SELECT * FROM tablename}) ; my $number = 10; my $fetch = $dbh->prepare(q{FETCH $number FROM imprecator}); ## ### Fetch first $number * 10 rows. ## while ($fetch->execute()) { Data::Dumper::Dumper($fetch->fetchall_arrayref()); last if $fetch->rows() < $number; }
    Note: The code above has not been tested; it is for illustrative purposes only.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://274128]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-03-29 08:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found