On Wed, Jan 07, 2009 at 02:53:30PM -0600, fREW Schmidt wrote: > columns => qw/AgentRequestedLast AgentRequestedFirst ShopNo/ > > I then get the error: Can't use string AgentRequestedLast as an ARRAY ref > while > in strict refs.
qw// builds a list, not an arrayref, so it's as though you typed this: columns => 'AgentRequestedLast', AgentRequestedFirst => 'ShopNo', hdp. _______________________________________________ List: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbix-class IRC: irc.perl.org#dbix-class SVN: http://dev.catalyst.perl.org/repos/bast/DBIx-Class/ Searchable Archive: http://www.grokbase.com/group/[email protected]
