up vote 4 down vote favorite
3
share [g+] share [fb]

I am designing a fairly complex database, and know that some of my queries will be far outside the scope of Django's ORM. Has anyone integrated SP's with Django's ORM successfully? If so, what RDBMS and how did you do it?

link|improve this question

76% accept rate
feedback

6 Answers

up vote 3 down vote accepted

Django Using Stored Procedure - will give some idea.

link|improve this answer
feedback

You have to use the connection utility in Django:

from django.db import connection

cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")

then you can fetch the data:

cursor.fetchone()

or:

cursor.fetchall()

More info here: http://docs.djangoproject.com/en/dev/topics/db/sql/

link|improve this answer
feedback

Don't.

Seriously.

Move the stored procedure logic into your model where it belongs.

Putting some code in Django and some code in the database is a maintenance nightmare. I've spent too many of my 30+ years in IT trying to clean up this kind of mess.

link|improve this answer
What he's asking is about integrating the ORM with SPs. This probably isn't possible, and using stored procedures probably requires you to just access django.db.connection directly like in the other answers, but it would be interesting if you could automatically move common queries the ORM makes into stored procedures, to save on query generation time, and do it transparently, as an optimization. It wouldn't work on every database, and the performance gain probably isn't worthwhile, but it would be fun to investigate. – Chad May 11 '11 at 19:09
@Chad: "What he's asking is about integrating the ORM with SPs." Understood. Hence my answer. SP's fragment your application logic between proper application code and the database. They often create more problems than they solve. I think that SP's are not helpful under any circumstances and should not be used. – S.Lott May 11 '11 at 19:52
1  
@S.Lott I think you misunderstood the point I made. I'm talking about an imaginary/future Django ORM. Stored procedures will not be written by developers. This ORM will dynamically/transparently convert commonly executed ORM queries into stored procedures, so that it can save on SQL string generation time and make use of the pre-compiled nature of SP. Again, I'm not claiming to think this is even possible, or that it would be worth the speedup. Just pointing out an interesting idea his question spawned for me. This approach could leave all the logic in the code and have SP performance. – Chad May 18 '11 at 1:07
@Chad: I think you misunderstood the point I made. I'm talking about all SP's as being uniformly a bad idea. It's not "interesting". It's a mistake. SP's don't magically create high performance. – S.Lott May 18 '11 at 1:14
1  
@S. Lott it isn't "magical". It's faster to generate "EXEC some_sp_name(with, params)" than it is to generate a big SQL statement. You might say, "well thats just strings, it's super fast". Yeah, but if you've peaked into django's ORM SQL generation I think you'd see it's a little more frightening than that. Plus, stored procedures take advantage of the SQL being precompiled, like a parameterized query. I agree that stored procedures totally suck but you have to admit that it's an interesting idea to have the ORM transparently generate them for you instead of generating the SQL every time. – Chad May 19 '11 at 21:01
show 1 more comment
feedback

We (musicpictures.com / eviscape.com) wrote that django snippet but its not the whole story (actually that code was only tested on Oracle at that time).

Stored procedures make sense when you want to reuse tried and tested SP code or where one SP call will be faster than multiple calls to the database - or where security requires moderated access to the database - or where the queries are very complicated / multistep. We're using a hybrid model/SP approach against both Oracle and Postgres databases.

The trick is to make it easy to use and keep it "django" like. We use a make_instance function which takes the result of cursor and creates instances of a model populated from the cursor. This is nice because the cursor might return additional fields. Then you can use those instances in your code / templates much like normal django model objects.

    def make_instance(instance, values):
    '''
    Copied from eviscape.com

    generates an instance for dict data coming from an sp

    expects:
        instance - empty instance of the model to generate
        values - dictionary from a stored procedure with keys that are named like the
            model's attributes
    use like:
        evis = InstanceGenerator(Evis(), evis_dict_from_SP)

    >>> make_instance(Evis(), {'evi_id': '007', 'evi_subject': 'J. Bond, Architect'})
    <Evis: J. Bond, Architect>

    '''
    attributes = filter(lambda x: not x.startswith('_'), instance.__dict__.keys())

    for a in attributes:
        try:
            # field names from oracle sp are UPPER CASE
            # we want to put PIC_ID in pic_id etc.
            setattr(instance, a, values[a.upper()])
            del values[a.upper()]
        except:
            pass

    #add any values that are not in the model as well
    for v in values.keys():
        setattr(instance, v, values[v])
        #print 'setting %s to %s' % (v, values[v])

    return instance

# Use it like this:
pictures = [make_instance(Pictures(), item) for item in picture_dict]

# And here are some helper functions:

def call_an_sp(self, var):
    cursor = connection.cursor()
    cursor.callproc("fn_sp_name", (var,))
    return self.fn_generic(cursor)


def fn_generic(self, cursor):
    msg = cursor.fetchone()[0]
    cursor.execute('FETCH ALL IN "%s"' % msg)
    thing = create_dict_from_cursor(cursor)
    cursor.close()
    return thing

def create_dict_from_cursor(cursor):
    rows = cursor.fetchall()
    # DEBUG settings (used to) affect what gets returned. 
    if DEBUG:
        desc = [item[0] for item in cursor.cursor.description]
    else:
        desc = [item[0] for item in cursor.description]
    return [dict(zip(desc, item)) for item in rows]

cheers, Simon.

link|improve this answer
Why do you close the cursor in fn_generic? – Joe Holloway Oct 13 '11 at 16:39
I work on an immense system with a database that is accessed by multiple applications, some c++, some python, some perl, some php, some web are based, many are not. I love it when the business logic is in SPs because it means the logic is consistent across all the implementations, and in our case at least, makes maintenance much easier. – compound eye Nov 8 '11 at 5:52
i found this comment by russ magee: "We have specifically avoided adding obvious SQL-like features to Django's ORM, because at the end of the day, we're not trying to replace SQL - we're just trying to provide a convenient way to express simple queries. It is fully expected that you will fall back to just calling raw SQL for complex cases" – compound eye Nov 10 '11 at 4:30
feedback

If you want to look at an actual running project that uses SP, check out minibooks. A good deal of custom SQL and uses Postgres pl/pgsql for SP. I think they're going to remove the SP eventually though (justification in trac ticket 92).

link|improve this answer
feedback

I guess the improved raw sql queryset support in Django 1.2 can make this easier as you wouldn't have to roll your own make_instance type code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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