Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Unable to INSERT dereferenced values into db

by Stevie-O (Friar)
on May 25, 2004 at 03:18 UTC ( [id://356106]=note: print w/replies, xml ) Need Help??


in reply to Unable to INSERT dereferenced values into db

First: Actually, you ARE returning an array. Lists are only transient things that exist in expressions. If you can take a reference to it, it's an array.

With that out of the way: That's not how you access array elements, and I think that'll give you a warning about single-element array slicing. There are two ways you can do your array:

$sth->execute( $ref->[0], $ref->[1], $ref->[2], $ref->[3]) ;
or slightly easier
$sth->execute( @$ref );
Try those.
--Stevie-O
$"=$,,$_=q>|\p4<6 8p<M/_|<('=> .q>.<4-KI<l|2$<6%s!<qn#F<>;$, .=pack'N*',"@{[unpack'C*',$_] }"for split/</;$_=$,,y[A-Z a-z] {}cd;print lc

Replies are listed 'Best First'.
Re: Re: Unable to INSERT dereferenced values into db
by Mr. Muskrat (Canon) on May 25, 2004 at 11:59 UTC

    TMTTWTDI (There's More Than Two Ways To Do It), this is Perl after all.

    <pedantic>You forgot about $sth->execute($$ref[0], $$ref[1], $$ref[2], $$ref[3]); and what about ...</pedantic>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-23 18:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found