Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with cascading a delete. I have two tables, and they are mapped many-to-many:

class File(object): pass 
file_table = Table('file', metadata, 
        Column('id', Integer, primary_key=True, autoincrement=True), 
        Column('filename', String(255)), 
} 

class FileHost(object): pass 
file_host = Table('host', metadata, 
        Column('id', Integer, primary_key=True, autoincrement=True ), 
        Column('name', String(255)), 
) 

file_hosted = Table('file_hosted', metadata, 
        Column('id_host', Integer, ForeignKey('host.id')), 
        Column('id_file', Integer, ForeignKey('file.id')) 
) 

session.mapper(File, file_table, properties={ 
    'host': relation(FileHost, secondary=file_hosted, backref='files', 
                        cascade='all,delete-orphan', single_parent=True) 
}) 
session.mapper(FileHost, file_host) 

This is the error I get:

sqlalchemy.exc.IntegrityError: 
(IntegrityError) update or delete on table "file" violates
foreign key constraint "file_hosted_id_file_fkey" on table "file_hosted" 
DETAIL:  Key (id)=(50905) is still referenced from table "file_hosted". 

Has anybody got an idea what I'm doing wrong?

I also asked the question on the sqlalchemy mailing list, and got the right answer:

You are telling SQLAlchemy to cascade File deletes to FileHost, but you want it the other way around. You can fix this by moving the cascade='all,delete-orphan' and single_parent=True clauses into the backref. You also probably want uselist=False.

session.mapper(File, file_table, properties={ 
    'host': relation(FileHost, 
                     backref=backref('files', 
                                     cascade='all,delete-orphan', 
                                     single_parent=True), 
                     secondary=file_hosted, 
                     uselist=False) 
}) 
share|improve this question
What exactly would you like to cascade: deletion of File to delete its FileHost, deletion of FileHost to delete its Files, or both? – van Jul 13 '10 at 10:52
When I delete a File it should delete the appropriate rows in file_hosted. – tom Jul 13 '10 at 12:36
can you add a code snippet that generates this error? – van Jul 13 '10 at 13:42
As it looks, you code is fine and should be working. Anyways, why do you need a secondary table for N-to-1 relationship instead of putting a ForeignKey directly into file table? – van Jul 14 '10 at 5:55
2  
@tom: please add your solution as an answer. Handling order dependencies in SA is a common issue, people will appreciate having the solution at hand. – khoxsey Aug 1 '12 at 18:07
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.