fastapiを使っていて、sqlalchemyでmodels.pyを定義しています。
外部キー制約を作りたいのですが、なぜかエラーが出たり、「外部テーブルに存在しない値」で外部キー制約のあるカラムに保存できたりしてしまいます。
以下はエラーが出るコードです。
python
1from sqlalchemy import Boolean,Column,ForeignKey,Integer,String 2from sqlalchemy.orm import relationship 3 4class Parenttest(Base): 5 __tablename__="oya" 6 id=Column(Integer,primary_key=True,unique=True) 7 children=relationship("Childtest") 8 9class Childstest(Base): 10 __tablename__="kodomo" 11 id=Column(Integer,primary_key=True,unique=True) 12 oyanoid=Column(Integer,ForeignKey("parenttest.id"))
このテーブル定義でやりたかったことは以下です。
0. Childtest.oyanoidではParenttest.idに既に存在する値しか使えないようにする
このモデルに対して行ったcrud操作は以下です。
python
1#Parenttestに一つ登録。 2db_test=models.Parenttest() 3db.add(db_test) 4db.commit() 5 6#Childstestにさきほどの親IDで登録。 7db_child=models.Childstest(oyanoid=db_test.id) 8db.add(db_child) 9db.commit()
出たエラーは以下です。
sqlalchemy.exc.InvalidRequestError: One or more mappers failed to initialize - can't proceed with initialization of other mappers. Triggering mapper: 'mapped class Parenttest->oya'. Original exception was: When initializing mapper mapped class Parenttest->oya, expression 'Childtest' failed to locate a name ('Childtest'). If this is a class name, consider adding this relationship() to the <class 'api.models.Parenttest'> class after both dependent classes have been defined.
エラーのGoogle翻訳結果は以下です
sqlalchemy.exc.InvalidRequestError:1つ以上のマッパーが初期化に失敗しました-他のマッパーの初期化を続行できません。 マッパーのトリガー: 'マップされたクラスParenttest-> oya'。 元の例外は次のとおりです。マッパーマップクラスParenttest-> oyaを初期化するとき、 式 'Childtest'は名前( 'Childtest')を見つけることができませんでした。 これがクラス名の場合は、両方の依存クラスを定義した後で、このRelationship()を<class'api.models.Parenttest '>クラスに追加することを検討してください。
何をどうしたらいいのやらさっぱり分かりませんでした。どうか助けてください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。