SQLAlchemyを使用して、双方向の多対多の関係を介して2つのデータベースオブジェクトを関連付けようとしています。ジャンクションテーブルに関連付けが存在する必要があります。テーブルとデータはSQLite3データベースに存在します。
これが簡単な例です。
Base = declarative_base()
class Colour (Base):
__tablename__ = 'colours'
id = Column("id", Integer, primary_key=True)
name = Column("name", String)
vehicles = association_proxy('vehicles_and_colours', 'vehicles')
class Vehicle (Base):
__tablename__ = 'vehicles'
id = Column("id", Integer, primary_key=True)
name = Column("name", String)
colours = association_proxy('vehicles_and_colours', 'colours')
class ColourVehicle (Base):
__tablename__ = 'vehicles_and_colours'
colour_id = Column('colour_fk', Integer, ForeignKey('colours.id'), primary_key=True)
vehicle_id = Column('vehicle_fk', Integer, ForeignKey('vehicles.id'), primary_key=True)
colours = relationship(Colour, backref=backref("vehicles_and_colours"))
vehicles = relationship(Vehicle, backref=backref("vehicles_and_colours"))
blue = session.query(Colour).filter(Colour.name == "blue").first()
car = session.query(Vehicle).filter(Vehicle.name == "car").first()
blue.vehicles.append(car)
これは私にエラーを与えます:
File "/usr/local/lib/python2.6/dist-packages/SQLAlchemy-0.8.0b2-py2.6-linux-i686.egg/sqlalchemy/ext/associationproxy.py", line 554, in append
item = self._create(value)
File "/usr/local/lib/python2.6/dist-packages/SQLAlchemy-0.8.0b2-py2.6-linux-i686.egg/sqlalchemy/ext/associationproxy.py", line 481, in _create
return self.creator(value)
TypeError: __init__() takes exactly 1 argument (2 given)
私は何が間違っているのですか?