Re: Django-Tagging not working with Oracle

2009-03-23 Thread Brandon Taylor
Downgrading to cx_Oracle-4.4.1 solved the problem. Now I can use the tagging.fields TagField() as expected and everything shows up correctly in the admin. b On Mar 20, 4:15 pm, Brandon Taylor wrote: > Hmm. I might downgrade my cs_Oracle and see if that makes a >

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Hmm. I might downgrade my cs_Oracle and see if that makes a difference. I double-checked my import statements and they match what you have: from tagging.models import Tag from tagging.fields import TagField but still, no dice. I'll post my findings here. It may well be a bug in cx_Oracle-5.0.1.

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Ian Kelly
On Mar 20, 1:52 pm, Brandon Taylor wrote: > Hmm. Well, I guess the only thing left to ask is what version of > Django and Tagging you're running? > > I'm using Oracle 10g, cx_Oracle-5.0.1, Django and Tagging from svn. > Other than that, I'm at a loss :) The same, but

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Ugh, sorry, that's: fields.py, not forms.py On Mar 20, 2:54 pm, Brandon Taylor wrote: > When you say "fixed the import" how so? I'm not seeing where I can > import TagField from any other location in tagging other than > forms.py. > > On Mar 20, 2:52 pm, Brandon Taylor

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
When you say "fixed the import" how so? I'm not seeing where I can import TagField from any other location in tagging other than forms.py. On Mar 20, 2:52 pm, Brandon Taylor wrote: > Hmm. Well, I guess the only thing left to ask is what version of > Django and Tagging

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Hmm. Well, I guess the only thing left to ask is what version of Django and Tagging you're running? I'm using Oracle 10g, cx_Oracle-5.0.1, Django and Tagging from svn. Other than that, I'm at a loss :) b On Mar 20, 2:12 pm, Ian Kelly wrote: > On Mar 20, 12:08 pm,

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Ian Kelly
On Mar 20, 12:08 pm, Brandon Taylor wrote: > Nope, still not working. If you're not defining tags = TagField() in > the model, how are you defining it? As a CharField? I'd like to see > how your model is set up. > > Of course, if I create a CharField and call it tags, it

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Nope, still not working. If you're not defining tags = TagField() in the model, how are you defining it? As a CharField? I'd like to see how your model is set up. Of course, if I create a CharField and call it tags, it will show up. Even overriding the form for the admin, and overriding tags:

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Hmm. Curious. The exact same code works with MySQL and SQLite3 for me. Oh well, let me switch it up and see if it's happy. Kind regards, b On Mar 20, 11:37 am, Ian Kelly wrote: > On Mar 20, 8:26 am, Brandon Taylor wrote: > > > Hi Ian, > > >

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Ian Kelly
On Mar 20, 8:26 am, Brandon Taylor wrote: > Hi Ian, > > Thanks for the response. The test case is adding the TagField() to any > model. > > Here's an excerpt from my model class: > > #models.py > from django.db import models > from django.contrib import admin > from

Re: Django-Tagging not working with Oracle

2009-03-20 Thread Brandon Taylor
Hi Ian, Thanks for the response. The test case is adding the TagField() to any model. Here's an excerpt from my model class: #models.py from django.db import models from django.contrib import admin from tagging.models import Tag from tagging.forms import TagField class

Re: Django-Tagging not working with Oracle

2009-03-19 Thread Ian Kelly
On Mar 19, 9:21 am, Brandon Taylor wrote: > Hi Everyone, > > I'm using the svn checkout of Django-Tagging and Django-Trunk. Tagging > is working perfectly for me with any other database except, of course, > Oracle, which is what I need it to work in. > > I can't get the

Django-Tagging not working with Oracle

2009-03-19 Thread Brandon Taylor
Hi Everyone, I'm using the svn checkout of Django-Tagging and Django-Trunk. Tagging is working perfectly for me with any other database except, of course, Oracle, which is what I need it to work in. I can't get the TagField() to show up in the admin at all without adding a custom form for my