Re: corrupt coredata DB

2008-10-09 Thread Marc Monguio
That looks bad, and it looks like you have enough information to be worth filing a bug. I just filed it. Bug ID# 6280722 What version of OSX are you on ? 10.5.5, tried on PPC and Intel with same results. Two other things you can do are (a) run "pragma integrity_check" on the db file, Retu

re: corrupt coredata DB

2008-10-08 Thread Ben Trumbull
Marc, Looks like it's trying to delete the object repeatedly in the database but it can't and then rolls back and tries again. By looking inside the sqlite database directly through sqlite3 tool I see that the tuple that coredata is trying to delete has Z_OPT equal to null: That looks bad, and

Re: corrupt coredata DB

2008-10-08 Thread Devon Ferns
DELETE FROM zplayedtrack WHERE z_opt = null I don't know much about CoreData but maybe you can't bind null parameters in SQLite? Devon Marc Monguio wrote: I have a coredata application that uses sqlite3 for persistence. One of my users reported that his application was not responsive and sho