in reply to Problems with DBIx::Class and CGI::Application

As a side note, this code won't do anything useful, as you use the $name et al variables later unmodified:

# scrub all the form data passed to this script... $scrubber->scrub( $_ ) for @form_data;

Replies are listed 'Best First'.
Re^2: Problems with DBIx::Class and CGI::Application
by stonecolddevin (Parson) on Sep 22, 2006 at 06:40 UTC

    Good point, chromatic. Should have done something more along the lines of my $name = $scrubber->scrub( $q->param('name') )

    Seems i'm making some stupid mistakes in this app, sleep ++ :-/

    meh.