0
votes
Which has more job openings for programmers - Rails or Django?
Definitely Rails, but I don't really think that is important, if you're deciding which one to learn don't do it based on which one has more jobs openings. Try both you'll have fun :)
…
2
votes
What is the best way to access stored procedures in Django’s ORM.
You have to use the connection utility in Django:
from django.db import connection
cursor = connection.cursor()
cursor.execute("SQL STATEMENT CAN BE ANYTHING")
th …
-1
votes
How to limit the maximum value of a numeric field in a Django model?
You could create a pre-save signal:
http://docs.djangoproject.com/en/dev/ref/ …
