Re: Oracle database TextField limitations and Django admin interface queries

2013-04-19 Thread Lauri Savolainen
On Saturday, April 13, 2013 7:54:43 PM UTC+3, Ian wrote: > > On Saturday, April 13, 2013 10:40:10 AM UTC-6, Ian wrote: >> >> On Friday, April 12, 2013 7:43:32 AM UTC-6, Lauri Savolainen wrote: >>> >>> Thank you for the reply, >>> >>> The field is defined in the Django model as: >>>

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-13 Thread Ian
On Saturday, April 13, 2013 10:40:10 AM UTC-6, Ian wrote: > > On Friday, April 12, 2013 7:43:32 AM UTC-6, Lauri Savolainen wrote: >> >> Thank you for the reply, >> >> The field is defined in the Django model as: >> location_description = models.TextField(_('additional route >> information'),

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-13 Thread Ian
On Friday, April 12, 2013 7:43:32 AM UTC-6, Lauri Savolainen wrote: > > Thank you for the reply, > > The field is defined in the Django model as: > location_description = models.TextField(_('additional route information'), > blank=True) > > Data length for the corresponding column in the database

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-12 Thread Lauri Savolainen
Thank you for the reply, The field is defined in the Django model as: location_description = models.TextField(_('additional route information'), blank=True) Data length for the corresponding column in the database seems to be 4000 and the type is NCLOB. The database is created by Django's

Re: Oracle database TextField limitations and Django admin interface queries

2013-04-10 Thread Jani Tiainen
10.4.2013 14:45, Lauri Savolainen kirjoitti: A little background: my application is used to manage observational data which is collected from designated routes annually. Each route object has a set of observation events which in turn have a date field. The data is managed by using a (terrible)

Oracle database TextField limitations and Django admin interface queries

2013-04-10 Thread Lauri Savolainen
A little background: my application is used to manage observational data which is collected from designated routes annually. Each route object has a set of observation events which in turn have a date field. The data is managed by using a (terrible) customized Django admin interface. In the