No, I'm using MySQL. The same thing happens with a SlugField, so I'm
not sure if the string/integer difference matters here. To return
'note' as an integer, would I write:

def note_anchor(self):
     return int(self.note)

or something else?

On Aug 19, 12:21 pm, olivier <[EMAIL PROTECTED]> wrote:
> Hi,
>
> On 19 août, 19:07, Drasty <[EMAIL PROTECTED]> wrote:
>
> > class Thing(models.Model):
> >      words = models.TextField()
> >      note = models.IntegerField()
>
> >      def note_anchor(self):
> >           return self.note
>
> > (Input:)
>
> >      words = 'Blah blah.'
> >      note = '1'
>
> In your example, you input `note` as a string, whereas `note` is an
> IntegerField.
>
> Is it a typo ?
> What database backend are you using ? Sqlite, I guess ?
>
>     Olivier


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to