in reply to Re^2: OO Coding - way to make it "save" the values?
in thread OO Coding - way to make it "save" the values?

Here is hint

sub table { return AndySQL::Table->new( db => shift, tablename => shift ); }

ultranerds, I highly suggest a reading of Beginning Perl Chapter 11: Object-Oriented Perl, followed by the Objects chapter of Modern Perl

Replies are listed 'Best First'.
Re^4: OO Coding - way to make it "save" the values?
by ultranerds (Hermit) on Jul 27, 2011 at 12:21 UTC
    Hi,

    Thanks, I've actually read the one in Beginning Per, but not the "Modern Perl" one... I'll get that book on order now

    Regarding your suggestion - thats, I'll give that a go :)

    Cheers

    Andy
        Thanks , just realised that (although I've purchased it anyway, for use on my Kindle :))

        Cheers

        Andy
Re^4: OO Coding - way to make it "save" the values?
by ultranerds (Hermit) on Jul 27, 2011 at 13:09 UTC
    Sweet, I got it working - thanks for the help :)