2010-11-29 29 views
0

私はoptionnalという入力があるフォームを持っていますが、外来キーでDoctrineが私にエラーを表示するため、ユーザーが入力しなければフォームを有効にできません。外部キーをnullに設定するにはどうすればよいですか? (symfony)

SQLSTATE[HY000]: General error: 1452 Cannot add or update a child row: a foreign key constraint fails (`logements`.`bail`, CONSTRAINT `bail_ibfk_3` FOREIGN KEY (`locataire2`) REFERENCES `locataire` (`nud`) ON DELETE CASCADE ON UPDATE CASCADE) 

私はphpMyAdminの中で同じ要求を試してみましたが、それが正常に動作します:私は、外部キーがnullに設定することができます。

私は外部キーをnullに設定し、Doctrineエラーなしでフォームを有効にするにはどうすればよいですか?

EDIT

Bail: 
    connection: doctrine 
    tableName: bail 
    columns: 
    id: 
     type: integer(2) 
     fixed: false 
     unsigned: true 
     primary: true 
     autoincrement: true 
    locataire1: 
     type: string(20) 
     fixed: false 
     unsigned: false 
     primary: false 
     notnull: false 
     autoincrement: false 
    locataire2: 
     type: string(20) 
     fixed: false 
     unsigned: false 
     primary: false 
     notnull: false 
     autoincrement: false 
    logement: 
     type: integer(2) 
     fixed: false 
     unsigned: true 
     primary: false 
     notnull: false 
     autoincrement: false 
    datedeb: 
     type: date(25) 
     fixed: false 
     unsigned: false 
     primary: false 
     notnull: false 
     autoincrement: false 
    datefin: 
     type: date(25) 
     fixed: false 
     unsigned: false 
     primary: false 
     default: '0000-00-00' 
     notnull: false 
     autoincrement: false 
    colloc: 
     type: integer(4) 
     fixed: false 
     unsigned: false 
     primary: false 
     default: '0' 
     notnull: false 
     autoincrement: false 
    bailglissant: 
     type: string(12) 
     fixed: false 
     unsigned: false 
     primary: false 
     default: 'Non spécifié' 
     notnull: false 
     autoincrement: false 
    relations: 
    Locataire: 
     local: locataire1 
     foreign: nud 
     type: one 
    Logement: 
     local: logement 
     foreign: id 
     type: one 
    Locataire_3: 
     class: Locataire 
     local: locataire2 
     foreign: nud 
     type: one 
+1

スキーマ定義とフォームを貼り付けてください。フィールドが本当にオプションとして定義されている場合は、そのようなメッセージを受け取るべきではありません。エラーはデータベースから来ているので、doctrineはそこに '0'を入れようとします。 –

+0

私のフォームのウィジェットは "locataire2" – Elorfin

答えて

0

は、私は方法のprocessValuesを使用して問題を解決してきた()NULLに属性を設定するには(()を保存することにより呼びます)。

1

私はそれはケースがここにあるのかはわからないが、1対1の関係のために、あなたがこれをnullに設定したい場合はDoctrine_Nullオブジェクトを使用する必要があります。

$this->setLocataire2(new Doctrine_Null()); 

この問題は、selectの代わりに使用する入力によって発生する可能性があります。

+1

それは動作しませんが、私は知らなかったこのオブジェクトのおかげで – Elorfin

関連する問題