Easy Pickings: support robust on_commit handlers

2022-04-03 Thread Josh Smeaton
I've just created a ticket for supporting robust on_commit handlers that I think might be a good first ticket for somebody looking to get into contributing to Django. https://code.djangoproject.com/ticket/33616 I'd be more than happy to review any patch and provide guidance if required. It's

Re: Revisiting MSSQL and Azure SQL Support in Django

2022-04-03 Thread Tim Allen
Thanks for the thoughtful replies, and the context - I'm mostly in agreement, and do hope that both Oracle and Microsoft step up as corporate sponsors (not to mention other companies that have been sold for eight or nine figures). My hope is that we can give credit where credit is due, and

Re: Revisiting MSSQL and Azure SQL Support in Django

2022-04-03 Thread Florian Apolloner
Hi Tim, On Friday, April 1, 2022 at 5:02:00 PM UTC+2 Tim Allen wrote: > The DB popularity index at db-engines.com has regularly listed the top > four as Oracle, MySQL, Microsoft SQL Server, and PostgreSQL, in that order. > I notice some comments in this thread about Microsoft being

Re: Probable Bug, foreign key to a database view.

2022-04-03 Thread Alexandru M.
Does it behave the way you're expecting it to behave if you declare field as models.CharField(max_length=4, primary_key=True)? On Saturday, 26 March 2022 at 15:45:39 UTC+2 sandeep...@gmail.com wrote: > class View(models.Model): > field = models.CharField(max_length=4) > class Meta: >