Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Database MySQL Perl

by shmem (Chancellor)
on Feb 27, 2012 at 09:24 UTC ( [id://956407]=note: print w/replies, xml ) Need Help??


in reply to Database MySQL Perl

1. What value is stored in @intervals

Since @intervals denotes an array, most likely it holds a list of values - only one would just be a special case. The array holds what is returned from the search method of the object provided by resultset.

If in doubt, have a look:

{ my $c; for my $thingy (@intervals) { printf "%2d. '%s'\n",++$c, $thingy; } }
2. How is it possible to have 'Aggregation' in code and 'aggregation' table in database

It's possible with some piece of software which does the connection between 'Aggregation' and 'aggregation', probably by upper-/lowercasing the identifier.

3. What does 'undef' signify here.

It means just what undef means anywhere else: a placeholder for nothing, which is just about the same as the NULL value in a database cell.

Have a look at the documentation of DBIx::Class and DBIx::Class::ResultSet.

Replies are listed 'Best First'.
Re^2: Database MySQL Perl
by akagrawal3 (Beadle) on Feb 27, 2012 at 09:44 UTC
    Thank you very much :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-19 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found