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.
| [reply] |
$form->model->create( {resultset => 'Author'});
gives me the same problem as
$form->model->update($author);
i.e. no data created in the address table
| [reply] |