hi all!I just started a study on Doctrine and unfortunlly got an error.

My schema is:
Post:
  actAs: { Timestampable: ~ }
  columns:
    ds_title: { type: string(255), notnull: true }
    ds_text:  { type: string(4000), notnull: true }

PostAttachment:
  columns:
    post_id:  { type: integer, notnull: true }
    at_file:  { type: string(255), notnull: true }
    fl_swf:   { type: boolean, default: 0 }
  relations:
    Post:     { local: post_id, foreign: id, foreignAlias: Attachments }

And, when embedding the forms and setting it to be upload, I got:
Fatal error: Call to a member function save() on a non-object in
.../lib/symfony/plugins/sfDoctrinePlugin/lib/form/sfFormDoctrine.class.php
on line 52

The at_file field is what Im using as upload, in the _very_ same way I use
on propel. Maybe it is something related to configurations, so, I would like
to have suggestions of what may be wrong.
I got a sandbox today and changed databases and ProjectConfiguration
manually, still using  the sqlliste database.

Thanks in advance
-- 
Sidney G B Ferreira
Desenvolvedor Web

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to