2010-07-30 10:42:36 +08:00
|
|
|
from django.contrib.contenttypes import generic
|
|
|
|
from django.contrib.contenttypes.models import ContentType
|
2010-06-21 19:48:45 +08:00
|
|
|
from django.conf import settings
|
2007-09-15 05:38:45 +08:00
|
|
|
from django.db import models
|
2010-06-21 19:48:45 +08:00
|
|
|
from django.db import connection, DEFAULT_DB_ALIAS
|
|
|
|
|
2007-09-15 05:38:45 +08:00
|
|
|
|
|
|
|
class Square(models.Model):
|
|
|
|
root = models.IntegerField()
|
|
|
|
square = models.PositiveIntegerField()
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return "%s ** 2 == %s" % (self.root, self.square)
|
|
|
|
|
2010-06-21 19:48:45 +08:00
|
|
|
|
2008-01-05 06:51:22 +08:00
|
|
|
class Person(models.Model):
|
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=20)
|
|
|
|
|
|
|
|
def __unicode__(self):
|
|
|
|
return u'%s %s' % (self.first_name, self.last_name)
|
|
|
|
|
2010-06-21 19:48:45 +08:00
|
|
|
|
2010-02-24 23:29:25 +08:00
|
|
|
class SchoolClass(models.Model):
|
|
|
|
year = models.PositiveIntegerField()
|
|
|
|
day = models.CharField(max_length=9, blank=True)
|
|
|
|
last_updated = models.DateTimeField()
|
|
|
|
|
2010-06-21 19:48:45 +08:00
|
|
|
# Unfortunately, the following model breaks MySQL hard.
|
|
|
|
# Until #13711 is fixed, this test can't be run under MySQL.
|
|
|
|
if settings.DATABASES[DEFAULT_DB_ALIAS]['ENGINE'] != 'django.db.backends.mysql':
|
|
|
|
class VeryLongModelNameZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ(models.Model):
|
|
|
|
class Meta:
|
|
|
|
# We need to use a short actual table name or
|
|
|
|
# we hit issue #8548 which we're not testing!
|
|
|
|
verbose_name = 'model_with_long_table_name'
|
|
|
|
primary_key_is_quite_long_zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz = models.AutoField(primary_key=True)
|
|
|
|
charfield_is_quite_long_zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz = models.CharField(max_length=100)
|
|
|
|
m2m_also_quite_long_zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz = models.ManyToManyField(Person,blank=True)
|
|
|
|
|
|
|
|
|
2010-07-30 10:42:36 +08:00
|
|
|
class Tag(models.Model):
|
|
|
|
name = models.CharField(max_length=30)
|
2010-07-30 11:49:58 +08:00
|
|
|
content_type = models.ForeignKey(ContentType, related_name='backend_tags')
|
2010-07-30 10:42:36 +08:00
|
|
|
object_id = models.PositiveIntegerField()
|
|
|
|
content_object = generic.GenericForeignKey('content_type', 'object_id')
|
|
|
|
|
|
|
|
|
|
|
|
class Post(models.Model):
|
|
|
|
name = models.CharField(max_length=30)
|
|
|
|
text = models.TextField()
|
|
|
|
tags = generic.GenericRelation('Tag')
|
|
|
|
|
2010-07-30 10:43:01 +08:00
|
|
|
class Meta:
|
|
|
|
db_table = 'CaseSensitive_Post'
|
2010-07-30 10:42:36 +08:00
|
|
|
|
2007-09-16 18:04:26 +08:00
|
|
|
qn = connection.ops.quote_name
|
|
|
|
|
2007-09-15 05:38:45 +08:00
|
|
|
__test__ = {'API_TESTS': """
|
|
|
|
|
|
|
|
#4896: Test cursor.executemany
|
|
|
|
>>> from django.db import connection
|
|
|
|
>>> cursor = connection.cursor()
|
2007-09-16 18:04:26 +08:00
|
|
|
>>> opts = Square._meta
|
|
|
|
>>> f1, f2 = opts.get_field('root'), opts.get_field('square')
|
|
|
|
>>> query = ('INSERT INTO %s (%s, %s) VALUES (%%s, %%s)'
|
2008-08-11 20:11:25 +08:00
|
|
|
... % (connection.introspection.table_name_converter(opts.db_table), qn(f1.column), qn(f2.column)))
|
2007-09-16 18:04:26 +08:00
|
|
|
>>> cursor.executemany(query, [(i, i**2) for i in range(-5, 6)]) and None or None
|
2007-09-15 05:38:45 +08:00
|
|
|
>>> Square.objects.order_by('root')
|
|
|
|
[<Square: -5 ** 2 == 25>, <Square: -4 ** 2 == 16>, <Square: -3 ** 2 == 9>, <Square: -2 ** 2 == 4>, <Square: -1 ** 2 == 1>, <Square: 0 ** 2 == 0>, <Square: 1 ** 2 == 1>, <Square: 2 ** 2 == 4>, <Square: 3 ** 2 == 9>, <Square: 4 ** 2 == 16>, <Square: 5 ** 2 == 25>]
|
|
|
|
|
2007-09-15 06:54:58 +08:00
|
|
|
#4765: executemany with params=[] does nothing
|
2007-09-16 18:04:26 +08:00
|
|
|
>>> cursor.executemany(query, []) and None or None
|
2007-09-15 05:38:45 +08:00
|
|
|
>>> Square.objects.count()
|
|
|
|
11
|
|
|
|
|
2008-01-05 06:51:22 +08:00
|
|
|
#6254: fetchone, fetchmany, fetchall return strings as unicode objects
|
|
|
|
>>> Person(first_name="John", last_name="Doe").save()
|
|
|
|
>>> Person(first_name="Jane", last_name="Doe").save()
|
|
|
|
>>> Person(first_name="Mary", last_name="Agnelline").save()
|
|
|
|
>>> Person(first_name="Peter", last_name="Parker").save()
|
|
|
|
>>> Person(first_name="Clark", last_name="Kent").save()
|
|
|
|
>>> opts2 = Person._meta
|
|
|
|
>>> f3, f4 = opts2.get_field('first_name'), opts2.get_field('last_name')
|
|
|
|
>>> query2 = ('SELECT %s, %s FROM %s ORDER BY %s'
|
2008-08-11 20:11:25 +08:00
|
|
|
... % (qn(f3.column), qn(f4.column), connection.introspection.table_name_converter(opts2.db_table),
|
2008-01-05 06:51:22 +08:00
|
|
|
... qn(f3.column)))
|
|
|
|
>>> cursor.execute(query2) and None or None
|
|
|
|
>>> cursor.fetchone()
|
|
|
|
(u'Clark', u'Kent')
|
|
|
|
|
|
|
|
>>> list(cursor.fetchmany(2))
|
|
|
|
[(u'Jane', u'Doe'), (u'John', u'Doe')]
|
|
|
|
|
|
|
|
>>> list(cursor.fetchall())
|
|
|
|
[(u'Mary', u'Agnelline'), (u'Peter', u'Parker')]
|
|
|
|
|
2007-09-15 05:38:45 +08:00
|
|
|
"""}
|