Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I think I'm doing it wrongly otherwise people might already created this function (insert_or_update). Get the object, if it doesn't exists create that, otherwise update the current objects. Here's the problem recently I had on App Engine:

In App Engine, I repeat this kind of pattern many times: (and I think isn't this common?)

obj = get_or_insert('123', title='Hello World')
obj.title = 'Hello World'
obj.puts()

Or In Django,

obj, created = Model.objects.get_or_create(id='123', 
                   defaults={'title':'Hello World'}
if not created:
    obj.title = 'Hello World'
    obj.save()

It would be good if I could just call insert or update by calling this:

obj = insert_or_update('123', title='Hello World')
obj = Model.objects.insert_or_update(id='123', defaults={'title': 'Hello World'})

Back to App Engine documentation, I found the snippet on what this get_or_insert method doing. Something like the following:

def txn(key_name, **kwds):
    entity = Story.get_by_key_name(key_name, parent=kwds.get('parent'))
    if entity is None:
        entity = Story(key_name=key_name, **kwds)
        entity.put()
    return entity

def get_or_insert(key_name, **kwargs):
    return db.run_in_transaction(txn, key_name, **kwargs)

get_or_insert('some key', title="The Three Little Pigs")

I was wondering why a insert_or_update method not being created in app engine and django which I can pretty much say by changing the method to this (in app engine) could solved my repetitive:

@classmethod
def insert_or_update(cls, key_name, parent=None, **kwargs):
    def _tx():
        entity = cls.get_by_key_name(key_name, parent=parent)
        if entity:
            for key in kwargs:
                setattr(entity, key, kwargs[key])
        else:
            entity = cls(key_name=key_name, parent=parent, **kwargs)
        entity.put()
        return entity
    return db.run_in_transaction(_tx)
share|improve this question
1  
You're talking about an UPSERT operation that returns the value I believe. Django doesn't support such a function AFAIK. – super9 Mar 2 at 14:24

2 Answers

It's probably not as common as you would think. Personally, I don't find myself having to do this very often and when I do it's only two or three lines longer than your proposed insert_or_update method and this isn't enough to make me cry out for this feature or to motivate me to add it myself. Although I have used MySQL's INSERT … ON DUPLICATE KEY UPDATE quite a lot in the past.

I've had this experience a few times myself, just a few weeks ago I was wondering why Django doesn't have a toggle method on M2M relationships… I ended up making one:

https://github.com/Matt-Stevens/django/commit/f7c36

share|improve this answer
1  
Hmm... That's make sense,... Anyway, that's an interesting toggle features for M2M. +1 :-D – Yeo Feb 27 at 18:37

If I understood the question correctly:

obj, created = Model.objects.get_or_create(id='123', 
               defaults={'title':'Hello World'})

The above should be replaced by the following:

obj, created = Model.objects.get_or_create(foo='alpha', bar='beta' 
               defaults={'title':'Hello World'})

where foo and bar are fields in the model. This resolves the repetition for django. Unsure about appengine. HTH

share|improve this answer
Sorry, I think you misunderstood my question. With your current answer, you get the object of the params you provided. The object.title may not be Hello World, So I also want to update that object with the title Hello World. So If you already have the object, update the title to Hello World. If you don't have the object, create the object with title Hello World. Put this in one liner shortcut methods, it would be, Model.objects.insert_or_update(foo='alpha', bar='beta', defaults={'title': 'Hello World'}); But I was thinking Why there's no such method, isn't it common use cases? – Yeo Feb 27 at 17:20
#your code required some additional lines to make it works as my requirement.; if not obj: obj.title = "Hello World; obj.save(); – Yeo Feb 27 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.