Can anyone point me to information on using TEMP columns with maypole?

I have a class with the following columns() declaration (I'm using CDBI::Plain):

__PACKAGE__->table('courses');
__PACKAGE__->columns(
    All => qw/
      courseid
      course_description
      date
      start_time
      end_time
      max_enroll
      campus
      instructor
      location
      organization
      is_visible
      is_canceled
      cancel_date
      created_by
      created_at
      last_update_by
      last_update_at
      keywords
      featured
      /,
    TEMP => qw/count/
);


Whenever I visit a class page, I get an error from
DBIx::ContextualFetch that count is an unknown column. I thought the
point of TEMP columns is that they aren't passed to the db, or am I
missing something?

Thanks,

-- jay
--------------------------------------------------
This email and attachment(s): [  ] blogable; [ x ] ask first; [  ]
private and confidential

daggerquill [at] gmail [dot] com
http://www.tuaw.com  http://www.downloadsquad.com  http://www.engatiki.org

values of β will give rise to dom!
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Maypole-users mailing list
Maypole-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/maypole-users

Reply via email to