> do models support transactions?

Yes, with the TransactionMiddleware. And it's well documented:
http://www.djangoproject.com/documentation/transactions/

> can we have multiple orders in our models(getting /fetching) records
> from our backend DB?

Sure. default ordering is defined in the model metadata
( http://www.djangoproject.com/documentation/model-api/#meta-options )
and you can use any other ordering anytime in your (generic) views:
Entry.objects.filter(foo='bar').order_by(['-date_published','headline'])

> can we use stored procedures (sp) through  our models?

Django does not support stored procedures (yet). But you can at least
use the lower-level db-apis of cxOracle or psycopg2.

Martin

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to