Hi, it seems like I'm constantly writing custom SQL code for everything because the django ORM cannot handle a lot of my requirements (which is perfectly understandable). Would it be such a bad idea to add an api to the django orm that's similar to SQLAlchemy? I don't like having to create cursors all of the time.
I also don't like the fact that there are so many ways to access/manipulate information in the database: I create the model via django's orm. Then, to access the database I can either use the ORM, sql from within my django app, or within the database (via stored procedure). So, when I need to find or change the way I retrieve/manipulate data from the db... it can be in any of those places or forms. Something doesn't seem right about this. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers -~----------~----~----~----~------~----~------~--~---
