2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
18. Using SQL reserved names
|
|
|
|
|
|
|
|
Need to use a reserved SQL name as a column name or table name? Need to include
|
|
|
|
a hyphen in a column or table name? No problem. Django quotes names
|
|
|
|
appropriately behind the scenes, so your database won't complain about
|
|
|
|
reserved-name usage.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class Thing(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
when = models.CharField(max_length=1, primary_key=True)
|
|
|
|
join = models.CharField(max_length=1)
|
|
|
|
like = models.CharField(max_length=1)
|
|
|
|
drop = models.CharField(max_length=1)
|
|
|
|
alter = models.CharField(max_length=1)
|
|
|
|
having = models.CharField(max_length=1)
|
|
|
|
where = models.DateField(max_length=1)
|
|
|
|
has_hyphen = models.CharField(max_length=1, db_column='has-hyphen')
|
2006-05-02 09:31:56 +08:00
|
|
|
class Meta:
|
|
|
|
db_table = 'select'
|
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
def __unicode__(self):
|
2006-05-02 09:31:56 +08:00
|
|
|
return self.when
|
|
|
|
|
2006-08-27 21:59:47 +08:00
|
|
|
__test__ = {'API_TESTS':"""
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> import datetime
|
|
|
|
>>> day1 = datetime.date(2005, 1, 1)
|
|
|
|
>>> day2 = datetime.date(2006, 2, 2)
|
|
|
|
>>> t = Thing(when='a', join='b', like='c', drop='d', alter='e', having='f', where=day1, has_hyphen='h')
|
|
|
|
>>> t.save()
|
|
|
|
>>> print t.when
|
|
|
|
a
|
|
|
|
|
|
|
|
>>> u = Thing(when='h', join='i', like='j', drop='k', alter='l', having='m', where=day2)
|
|
|
|
>>> u.save()
|
|
|
|
>>> print u.when
|
|
|
|
h
|
|
|
|
|
|
|
|
>>> Thing.objects.order_by('when')
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Thing: a>, <Thing: h>]
|
2006-05-02 09:31:56 +08:00
|
|
|
>>> v = Thing.objects.get(pk='a')
|
|
|
|
>>> print v.join
|
|
|
|
b
|
|
|
|
>>> print v.where
|
|
|
|
2005-01-01
|
|
|
|
|
|
|
|
>>> Thing.objects.dates('where', 'year')
|
|
|
|
[datetime.datetime(2005, 1, 1, 0, 0), datetime.datetime(2006, 1, 1, 0, 0)]
|
|
|
|
|
|
|
|
>>> Thing.objects.filter(where__month=1)
|
2006-06-04 08:23:51 +08:00
|
|
|
[<Thing: a>]
|
2006-08-27 21:59:47 +08:00
|
|
|
"""}
|