in reply to Re^2: SQL::Statement limit clause with placeholders
in thread SQL::Statement limit clause with placeholders
my $sql = <<__END_SQL__; YOUR STATEMENT HERE __END_SQL__ $sql .= "LIMIT $start, $chunk_size\n"; my $sth = $dbh->prepare( $sql ); # etc.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: SQL::Statement limit clause with placeholders
by springm (Novice) on Jun 03, 2005 at 14:37 UTC |