in reply to Re^2: Catalyst FormFu Create Data in Related Table
in thread Catalyst FormFu Create Data in Related Table

i.e. no data created in the address table

How do you know?

Try this example Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormFu, http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial/Final/Chapter09_FormFu/MyApp/

  • Comment on Re^3: Catalyst FormFu Create Data in Related Table

Replies are listed 'Best First'.
Re^4: Catalyst FormFu Create Data in Related Table
by simpzoid (Novice) on Sep 24, 2012 at 14:37 UTC
    I am familiar with
    Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormFu, http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial/Final/Chapter09_FormFu/MyApp/
    but it doesn't create data in related tables.
    I know the data is not inserted because i am using:
    DBIC_TRACE=1 script/myapp_server.pl -r
    and I can see what queries are actually being issued
    I have also queried the database and there is nothing in the address table.
Re^4: Catalyst FormFu Create Data in Related Table
by simpzoid (Novice) on Sep 24, 2012 at 15:05 UTC
    $form->model->create( {resultset => 'Author'});
    gives me the same problem as
    $form->model->update($author);
    i.e. no data created in the address table