Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: DBD::Oracle 's DBI binding of arrays

by Corion (Patriarch)
on Sep 21, 2007 at 06:40 UTC ( [id://640273]=note: print w/replies, xml ) Need Help??


in reply to Re: DBD::Oracle 's DBI binding of arrays
in thread DBD::Oracle 's DBI binding of arrays

map takes a list and returns a new list. The new list is created by gathering the results of the codeblock. The codeblock is invoked one per item in the original list:

use strict; use Data::Dumper; my @items = qw(1 2 3 4 5 6 7); my @new_items; # Make a copy of @items in a very inefficient way @new_items = map { $_ } @items; # Make a new list 2 3 4 5 6 7 8 @new_items = map { $_+1 } @items; # Make a new list of strings: @new_items = map { ">$_<" } @items; # Make a new list with all items appearing twice: # 1 1 2 2 3 3 4 4 5 5 6 6 7 7 @new_items = map { $_ => $_ } @items; # Make a new list with all items quoted: map { $dbh->quote($_) } @userArray

Replies are listed 'Best First'.
Re^3: DBD::Oracle 's DBI binding of arrays
by bibliophile (Prior) on Sep 21, 2007 at 13:53 UTC
    Beautifully concise explanation, Corion. ++

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-24 12:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found