On Jan 12, 2011, at 8:14 AM, Jagdeep Singh Malhi wrote: > I only want to know is Django is able Lock/Unlock the Database tables, > If yes. > How its possible? how its works
Django by itself doesn't issue locking instructions to the database, and doesn't have any built-in primitives to do so. You can use direct SQL, bypassing the ORM, to issue those commands if you really need to. But the previous commenter's note is right: Pessimistic locking often kills database performance, and is rarely the best solution. -- -- Christophe Pettus x...@thebuild.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.