Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Syntax question when using Class::DBI

by broquaint (Abbot)
on Dec 09, 2004 at 01:13 UTC ( [id://413393]=note: print w/replies, xml ) Need Help??


in reply to Syntax question when using Class::DBI

There is no problem with using a simple scalar variable when dynamically calling a method, as Fletch illustrated. However if you're using an aggregate variable or an expression you can simply use the can method e.g
print $rowobj->can( $cols{id} )->();
Or if you wish to call it directly you need to be a little indirect and take advantage of scalar dereferencing e.g
print $rowobj->${ \$cols{id} };
Addendum: On a more practical note you can always access the primary key by using the id accessor method, regardless of what is the name of the actual row; as documented.
HTH

_________
broquaint

Log In?
Username:
Password:

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

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

    No recent polls found