Re: More DJango Tagging Oracle Issues

2009-03-24 Thread Brandon Taylor
I have confirmed that it also works as expected with cx_Oracle-5.0.1 Woohoo On Mar 24, 2:14 pm, Brandon Taylor wrote: > After much digging, I was able to find the problem. In fields.py in > django-tagging, the tags are pulled from cache when they are saved, > rather

Re: More DJango Tagging Oracle Issues

2009-03-24 Thread Brandon Taylor
After much digging, I was able to find the problem. In fields.py in django-tagging, the tags are pulled from cache when they are saved, rather than going back to the database. The problem I was seeing wasn't that tags werent' being applied to objects, or added to the database, but the input

Re: More DJango Tagging Oracle Issues

2009-03-23 Thread Brandon Taylor
Hi Ian, I'm not that familiar with Oracle, so I have no idea if the problems I'm experiencing are related in some way to permissions, etc, but I have been reassured by my Oracle person that my user has full permissions on my schema. That being said, the TagField() will show up in admin when

Re: More DJango Tagging Oracle Issues

2009-03-23 Thread Ian Kelly
On Mar 23, 1:52 pm, Brandon Taylor wrote: > Hi Everyone, > > Is anyone having issues with Django Tagging (svn) not updating tags on > an existing model? I'm running cx_Oracle-4.4.1 - thanks to (Ian Kelly) > and Django Trunk. Hmm. I tried running the same model you

More DJango Tagging Oracle Issues

2009-03-23 Thread Brandon Taylor
Hi Everyone, Is anyone having issues with Django Tagging (svn) not updating tags on an existing model? I'm running cx_Oracle-4.4.1 - thanks to (Ian Kelly) and Django Trunk. I can add tags when a model instance is created, but update/delete is not working. TIA, Brandon