Community Page
- www.codespatter.com Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- You can do this. from somewhere import SoftDeleteManager class NewManager(SoftDeleteManager): '''new stuff''' and in the model objects = NewManager()
- Great writeup, thanks for that! I'll have question though. Say I import SoftDeleteManager from an external file and use it with objects = SoftDeleteManager() But now, I loose ability to define...
- thanks, man!
- Yes! Finally I know where that annoying example.com lives! Thank you!
- Thanks very much! I think you just saved me a lot of stuffing around with settings.py
Jump to original thread »
Inserting multiple rows into a table is simple.
INSERT INTO table1 (id) VALUES (1), (2)
But what if you want to use a subquery to replace the explicit query with something more dynamic. This should be possible, however, sear ... Continue reading »
INSERT INTO table1 (id) VALUES (1), (2)
But what if you want to use a subquery to replace the explicit query with something more dynamic. This should be possible, however, sear ... Continue reading »
1 year ago
but damm, i can only think of the ga-zillions of scripts i need to rewrite
1 year ago
http://dev.mysql.com/doc/refman/5.0/en/insert-s...
1 year ago