Re: DatabaseFeatures and supports_transactions

2012-09-28 Thread Russell Keith-Magee
On Sat, Sep 29, 2012 at 5:27 AM, Andy Dustman wrote: > On Tue, Sep 25, 2012 at 7:57 PM, Russell Keith-Magee > wrote: >> On Tue, Sep 25, 2012 at 11:24 PM, maxi wrote: >>> No, I just answer because it caught my attention. Why not just trust in a >>> True/False property ? >> >> As I recall, the rea

Re: DatabaseFeatures and supports_transactions

2012-09-28 Thread Andy Dustman
On Tue, Sep 25, 2012 at 7:57 PM, Russell Keith-Magee wrote: > On Tue, Sep 25, 2012 at 11:24 PM, maxi wrote: >> No, I just answer because it caught my attention. Why not just trust in a >> True/False property ? > > As I recall, the reason we can't just use a property is MySQL. There's > no reliabl

Re: DatabaseFeatures and supports_transactions

2012-09-26 Thread maxi
El martes, 25 de septiembre de 2012 21:01:39 UTC-3, Karen Tracey escribió: > > On Tue, Sep 25, 2012 at 11:24 AM, maxi >wrote: > >> El martes, 25 de septiembre de 2012 09:05:47 UTC-3, Karen Tracey >> escribió: >> >>> First, this method is used during testing, generally not during normal >>> ope

Re: DatabaseFeatures and supports_transactions

2012-09-26 Thread maxi
El martes, 25 de septiembre de 2012 20:57:54 UTC-3, Russell Keith-Magee escribió: > > On Tue, Sep 25, 2012 at 11:24 PM, maxi > > wrote: > > > > > > El martes, 25 de septiembre de 2012 09:05:47 UTC-3, Karen Tracey > escribió: > >> > >> On Mon, Sep 24, 2012 at 10:15 PM, maxi wrote: > >>>

Re: DatabaseFeatures and supports_transactions

2012-09-25 Thread Karen Tracey
On Tue, Sep 25, 2012 at 11:24 AM, maxi wrote: > El martes, 25 de septiembre de 2012 09:05:47 UTC-3, Karen Tracey escribió: > >> First, this method is used during testing, generally not during normal >> operation. It's implemented as a cached property so regardless of how many >> times the value i

Re: DatabaseFeatures and supports_transactions

2012-09-25 Thread Russell Keith-Magee
On Tue, Sep 25, 2012 at 11:24 PM, maxi wrote: > > > El martes, 25 de septiembre de 2012 09:05:47 UTC-3, Karen Tracey escribió: >> >> On Mon, Sep 24, 2012 at 10:15 PM, maxi wrote: >>> >>> Hi, >>> >>> DatabseFeatures class has a supports_transactions property for test if >>> the db engine support t

Re: DatabaseFeatures and supports_transactions

2012-09-25 Thread maxi
El martes, 25 de septiembre de 2012 09:05:47 UTC-3, Karen Tracey escribió: > > On Mon, Sep 24, 2012 at 10:15 PM, maxi >wrote: > >> Hi, >> >> DatabseFeatures class has a supports_transactions property for test if >> the db engine support transactions. >> supports_transactions implementation make

Re: DatabaseFeatures and supports_transactions

2012-09-25 Thread Karen Tracey
On Mon, Sep 24, 2012 at 10:15 PM, maxi wrote: > Hi, > > DatabseFeatures class has a supports_transactions property for test if the > db engine support transactions. > supports_transactions implementation makes some metadata alters to check > this behaivor. > > Now, is really needed to do this to

DatabaseFeatures and supports_transactions

2012-09-24 Thread maxi
Hi, DatabseFeatures class has a supports_transactions property for test if the db engine support transactions. supports_transactions implementation makes some metadata alters to check this behaivor. Now, is really needed to do this to check transaction support? I don't know exactly how many t