Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: READDIR and DBI

by pryrt (Abbot)
on Feb 26, 2024 at 20:53 UTC ( [id://11157909]=note: print w/replies, xml ) Need Help??


in reply to Re^2: READDIR and DBI
in thread READDIR and DBI

what sort of magic is that ?

$sth->execute_array({ ArrayTupleStatus => \my @tuple}) or die $sth->errstr;

It depends on which portion of that line seems like "magic" to you.

  • LanX answered with the execute_array description.
  • ArrayTupleStatus is described in the DBI bind_param_array and execute_array documentation.
  • \my @tuple syntax is shown in the examples of that DBI documentation. The concept of creating an array and immediately getting a reference to that array is described in perlref: Assigning-to-References, and is essentially shorthand for calling my @tuple; in one line and then using \@tuple in the execute_array() call to pass the reference to the function. (This is my best guess as to what you would consider the "magic" portion of that line of code.)
  • or die $sth->errstr is the typical way to raise an error with DBI, unless you use RaiseError

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-05-21 21:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found