Re: Django IDE

2010-02-15 Thread Dan Ostrowski
Thanks for the recommendation of PyCharm, Joe. Jetbrains products are excellent and I've had a lot of luck with their "other" foray into targeted web framework IDEs: RubyMine. I'm definitely going to give PyCharm a go and I'd +1 any Jetbrains products. Cheers, Dan On Feb 15, 7:40 am, Joe Kueser

Re: create a method that only one user can access in the same time

2009-09-30 Thread Dan Ostrowski
Sounds like you need an atomic operation. Instead of doing a SELECT, do an UPDATE and then check the affected rows, such as: UPDATE table SET flag = 1 WHERE flag = 0; Then check if the operation succeeded. Cheers, Dan On Sep 30, 11:38 am, gustavo Cardoso wrote: > Acctually, > > I need to do