Hello Friends i m useing symfony 1.4 with doctrine orm...
i have follwing schema...

User:
  columns:
    username: { type: string(255), notnull: true, unique: true }
    password: { type: string(255), notnull: true, unique: true }

UserProfile:
  actAs:         { Timestampable: ~ }
  columns:
    user_id:     { type: integer, notnull: true }
    name:        { type: string(255) }
    phonenumber: { type: string(255), notnull: true }
    photo:       { type: string(255) }
    email:       { type: string(255) }
  relations:
    user:        { onDelete: CASCADE, local: user_id, foreign: id,
foreignAlias: UserProfile }

i have generated model and form with all command....now the problem is
i want to merge these two form and i want to do inser update delete
operation...can u pliz help me out form this.....
Thank You...

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

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

Reply via email to