Ticket #3182: 3182.2.diff
File 3182.2.diff, 12.3 KB (added by , 16 years ago) |
---|
-
django/db/models/base.py
=== modified file 'django/db/models/base.py'
331 331 332 332 save.alters_data = True 333 333 334 def update(self, **kwargs): 335 """ 336 Set the object's fields to the new values passed in as keyword 337 arguments and then save the object. Fields not specified in the 338 keyword arguments will not be altered. 339 """ 340 for k, v in kwargs.iteritems(): 341 setattr(self, k, v) 342 self.save() 343 344 update.alters_data = True 345 334 346 def save_base(self, raw=False, cls=None, force_insert=False, 335 347 force_update=False): 336 348 """ -
django/db/models/manager.py
=== modified file 'django/db/models/manager.py'
119 119 def get_or_create(self, **kwargs): 120 120 return self.get_query_set().get_or_create(**kwargs) 121 121 122 def update_or_create(self, **kwargs): 123 return self.get_query_set().update_or_create(**kwargs) 124 122 125 def create(self, **kwargs): 123 126 return self.get_query_set().create(**kwargs) 124 127 -
django/db/models/query.py
=== modified file 'django/db/models/query.py'
379 379 except self.model.DoesNotExist: 380 380 raise e 381 381 382 def update_or_create(self, **kwargs): 383 """ 384 Looks up an object with the given kwargs, creating one if necessary. 385 If the object already exists, then its fields are updated with the 386 values passed in the defaults dictionary. 387 Returns a tuple of (object, created), where created is a boolean 388 specifying whether an object was created. 389 """ 390 obj, created = self.get_or_create(**kwargs) 391 if not created: 392 obj.update(**kwargs.pop('defaults', {})) 393 return obj, created 394 382 395 def latest(self, field_name=None): 383 396 """ 384 397 Returns the latest object, according to the model's 'get_latest_by' -
docs/ref/models/instances.txt
=== modified file 'docs/ref/models/instances.txt'
5 5 ======================== 6 6 7 7 .. currentmodule:: django.db.models 8 8 9 9 This document describes the details of the ``Model`` API. It builds on the 10 10 material presented in the :ref:`model <topics-db-models>` and :ref:`database 11 11 query <topics-db-queries>` guides, so you'll probably want to read and … … 49 49 your object the first time you call ``save()``:: 50 50 51 51 >>> b2 = Blog(name='Cheddar Talk', tagline='Thoughts on cheese.') 52 >>> b2.id # Returns None, because b doesn't have an ID yet.52 >>> b2.id # Returns None, because b2 doesn't have an ID yet. 53 53 >>> b2.save() 54 54 >>> b2.id # Returns the ID of your new object. 55 55 … … 94 94 Given the above ``'Cheddar Talk'`` blog example, this example would override the 95 95 previous record in the database:: 96 96 97 b4 = Blog(id=3, name='Not Cheddar', tagline='Anything but cheese.')98 b4.save() # Overrides the previous blog with ID=3!97 >>> b4 = Blog(id=3, name='Not Cheddar', tagline='Anything but cheese.') 98 >>> b4.save() # Overrides the previous blog with ID=3! 99 99 100 100 See `How Django knows to UPDATE vs. INSERT`_, below, for the reason this 101 101 happens. … … 187 187 errors that are difficult to track down. This feature is for advanced use 188 188 only. 189 189 190 191 .. _ref-models-update: 192 193 Updating objects 194 ================ 195 196 .. versionadded:: 1.1 197 198 To update and save a model instance in one step, call ``update()``: 199 200 .. method:: Model.update(**kwargs) 201 202 A convenience method for updating and saving a model instance in one step, 203 where the keyword arguments are the names of the fields on your model you want 204 to update. Like ``save()``, the ``update()`` method has no return value. 205 206 Given the earlier ``'Not Cheddar'`` blog example, this example would update 207 and save the existing model instance:: 208 209 >>> b4.name 210 'Not Cheddar' 211 >>> b4.update(name='All Cheddar', tagline='Nothing but cheddar cheese') 212 >>> b4.name 213 'All Cheddar' 214 215 Since ``update()`` calls ``save()`` behind the scenes, Django will hit the 216 database every time ``update()`` is called. 217 218 190 219 .. _model-instance-methods: 191 220 192 221 Other model instance methods -
docs/ref/models/querysets.txt
=== modified file 'docs/ref/models/querysets.txt'
896 896 897 897 .. _Safe methods: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1 898 898 899 ``update_or_create(**kwargs)`` 900 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 901 902 .. versionadded:: 1.1 903 904 A convenience method for looking up an object with the given kwargs, and then 905 either updating the values of the object if one is found or creating an 906 object if one was not found. 907 908 This method calls ``get_or_create()`` behind the scenes, and similarly 909 returns a tuple of ``(object, created)``, where ``object`` is the updated or 910 created object and ``created`` is a boolean specifying whether a new object 911 was created. 912 913 This is meant as a shortcut to the following type of code:: 914 915 obj, created = Person.objects.get_or_create(first_name='John', last_name='Lennon', 916 defaults={'birthday': date(1940, 10, 9)}) 917 if not created: 918 obj.update(birthday=date(1940, 10, 9)) 919 920 This pattern gets quite unwieldy as the number of fields in a model goes up. 921 The above example can be rewritten using ``update_or_create()`` like so:: 922 923 obj, created = Person.objects.update_or_create(first_name='John', last_name='Lennon', 924 defaults={'birthday': date(1940, 10, 9)}) 925 926 Any keyword arguments passed to ``update_or_create()`` will be used in a 927 call to ``get_or_create()``. If ``get_or_create()`` creates an object, then 928 nothing needs to be done by ``update_or_create()`` and a tuple of the created 929 object and ``True`` is returned. If, on the other hand, ``get_or_create()`` 930 does not create a new object, then ``update_or_create()`` will update the 931 object with the values passed in the ``defaults`` parameter and a tuple of 932 the updated object and ``True`` is returned. 933 934 The ``defaults`` parameter should be a dict of attribute-value pairs that 935 you want to update. If ``defaults`` is empty or not specified, then 936 ``update_or_create()`` will act exactly like ``get_or_create()`` since there 937 would be nothing to update. 938 939 As with ``get_or_create()``, if you need to use ``update_or_create()`` in a 940 view, please make sure to use it only in ``POST`` requests unless you have a 941 good reason not to. ``GET`` requests shouldn't have any effect on data; use 942 ``POST`` whenever a request to a page has a side effect on your data. For 943 more, see `Safe methods`_ in the HTTP spec. 944 945 .. _Safe methods: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.1 946 899 947 ``count()`` 900 948 ~~~~~~~~~~~ 901 949 -
tests/modeltests/update/models.py
=== modified file 'tests/modeltests/update/models.py'
1 1 """ 2 Tests for the update() queryset method that allows in-place, multi-object3 updates.2 Tests for the update() queryset and model methods that allow in-place updates 3 to multiple objects or a single object. 4 4 """ 5 5 6 6 from django.db import models … … 22 22 23 23 24 24 __test__ = {'API_TESTS': """ 25 # QuerySet method ############################################################# 26 25 27 >>> DataPoint(name="d0", value="apple").save() 26 28 >>> DataPoint(name="d2", value="banana").save() 27 29 >>> d3 = DataPoint.objects.create(name="d3", value="banana") 28 30 >>> RelatedPoint(name="r1", data=d3).save() 29 31 30 32 Objects are updated by first filtering the candidates into a queryset and then 31 calling the update() method. It executes immediately and returns nothing. 33 calling the update() method. It executes immediately and returns the number of 34 objects affected. 32 35 33 36 >>> DataPoint.objects.filter(value="apple").update(name="d1") 34 37 1 … … 74 77 ... 75 78 AssertionError: Cannot update a query once a slice has been taken. 76 79 80 # Model method ################################################################ 81 82 # Get an existing DataPoint object. 83 >>> d = DataPoint.objects.get(name="d2") 84 >>> d.value, d.another_value 85 (u'thing', u'peaches') 86 87 # Update multiple fields. 88 >>> d.update(value='oranges', another_value='apples') 89 90 # Check that the object was updated. 91 >>> d.value, d.another_value 92 ('oranges', 'apples') 93 94 # Check that the object was saved. 95 >>> d = DataPoint.objects.get(name="d2", value="oranges", another_value="apples") 96 >>> d.value, d.another_value 97 (u'oranges', u'apples') 98 99 # Get an existing RelatedPoint object. 100 >>> r = RelatedPoint.objects.get(name="r1") 101 >>> r.data 102 <DataPoint: d1> 103 104 # Update the ForeignKey field. 105 >>> r.update(data=d) 106 >>> r.data 107 <DataPoint: d2> 108 109 # Check that the object was saved. 110 >>> RelatedPoint.objects.get(name="r1").data 111 <DataPoint: d2> 112 113 # You can also update an object that has not yet been saved. 114 >>> d = DataPoint(name="d4", value="planes", another_value="trains") 115 >>> d.update(another_value="automobiles") 116 >>> d.value, d.another_value 117 ('planes', 'automobiles') 77 118 """ 78 119 } -
tests/modeltests/update_or_create/models.py
=== added directory 'tests/modeltests/update_or_create' === added file 'tests/modeltests/update_or_create/__init__.py' === added file 'tests/modeltests/update_or_create/models.py'
1 """ 2 update_or_create() tries to look up an object with the given parameters. 3 If an object is found, it updates the object. If an object isn't found, it 4 creates one with the given parameters. 5 """ 6 7 from django.db import models 8 9 class Person(models.Model): 10 first_name = models.CharField(max_length=100) 11 last_name = models.CharField(max_length=100) 12 birthday = models.DateField() 13 14 def __str__(self): 15 return '%s %s, Birthday: %s' % (self.first_name, self.last_name, 16 self.birthday) 17 18 class Meta: 19 ordering = ('last_name',) 20 21 __test__ = {'API_TESTS': """ 22 # Create a Person. 23 >>> from datetime import date 24 >>> p = Person.objects.create(first_name='John', last_name='Lennon', birthday=date(1940, 10, 9)) 25 26 # Only one Person is in the database at this point. 27 >>> Person.objects.all() 28 [<Person: John Lennon, Birthday: 1940-10-09>] 29 30 # update_or_create() a Person with the same name. 31 >>> p, created = Person.objects.update_or_create(first_name='John', last_name='Lennon', defaults={'birthday': date(1970, 10, 9)}) 32 33 # update_or_create() didn't have to create an object. 34 >>> created 35 False 36 37 # There's still only one Person in the database, and their birthday was updated. 38 >>> Person.objects.all() 39 [<Person: John Lennon, Birthday: 1970-10-09>] 40 41 # update_or_create() a Person with a different name. 42 >>> p, created = Person.objects.update_or_create(first_name='George', last_name='Harrison', defaults={'birthday': date(1943, 2, 25)}) 43 >>> created 44 True 45 46 # Two People in the database now. 47 >>> Person.objects.all() 48 [<Person: George Harrison, Birthday: 1943-02-25>, <Person: John Lennon, Birthday: 1970-10-09>] 49 50 # If we execute the exact same statement, it won't create a Person. 51 >>> p, created = Person.objects.update_or_create(first_name='George', last_name='Harrison', defaults={'birthday': date(1943, 2, 25)}) 52 >>> created 53 False 54 55 # The two People in the database haven't changed. 56 >>> Person.objects.all() 57 [<Person: George Harrison, Birthday: 1943-02-25>, <Person: John Lennon, Birthday: 1970-10-09>] 58 59 # update_or_create() can take an empty 'defaults' parameter, but in this 60 # situation behaves exactly like get_or_create(). This is useful if you are 61 # building the 'defaults' dictionary dynamically. 62 >>> p, created = Person.objects.update_or_create(first_name='George', last_name='Harrison', defaults={}) 63 >>> created 64 False 65 66 # A different name with an empty 'defaults'. 67 >>> p, created = Person.objects.update_or_create(first_name='John', last_name='Smith', birthday=date(1950, 2, 10), defaults={}) 68 >>> created 69 True 70 71 >>> Person.objects.all() 72 [<Person: George Harrison, Birthday: 1943-02-25>, <Person: John Lennon, Birthday: 1970-10-09>, <Person: John Smith, Birthday: 1950-02-10>] 73 """}