Re: Django doesn't recognize the sequences/triggers in existing Oracle DB

2009-07-03 Thread Wanpeng
Thanks Ian! I'll try the new version first. Wanpeng On Fri, Jul 3, 2009 at 5:33 PM, Ian Kelly wrote: > > On Jul 3, 6:13 am, Wanpeng wrote: > > Hello, > > I am writing my first app in Django. I already have existing > > tables/sequences/triggers in Oracle. so I used "inspectdb" to generate > t

Re: Django doesn't recognize the sequences/triggers in existing Oracle DB

2009-07-03 Thread Ian Kelly
On Jul 3, 6:13 am, Wanpeng wrote: > Hello, > I am writing my first app in Django. I already have existing > tables/sequences/triggers in Oracle. so I used "inspectdb" to generate the > models for django. Here's one model for example: > > class Instructors(models.Model): > > > > >     instructorid

Django doesn't recognize the sequences/triggers in existing Oracle DB

2009-07-03 Thread Wanpeng
Hello, I am writing my first app in Django. I already have existing tables/sequences/triggers in Oracle. so I used "inspectdb" to generate the models for django. Here's one model for example: class Instructors(models.Model): > instructorid = models.IntegerField(db_column='INSTRUCTORID', > prim