This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zzzeek
Recipients Jeremy Banks, Mark.Bucciarelli, adamtj, asvetlov, dholth, ghaering, r.david.murray, scott.urban, torsten, tshepang, zzzeek
Date 2014-01-09.21:20:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389302428.5.0.254115362076.issue10740@psf.upfronthosting.co.za>
In-reply-to
Content
well Adam, you might also be surprised to see pysqlite not doing very well on the *other* side of the equation either; that is, when it *begins* the transaction.  Issue http://bugs.python.org/issue9924 refers to this and like this one, hasn't seen any activity since 2011.  You might be interested in the rationale on that one, which is that python apps may wish to have some degree of concurrency against a sqlite file for an application that is doing all SELECTs.  

I am certainly in favor of a pure pep-249 approach that emits BEGIN on the first execute() call period, and never implicitly rolls back or commits.  

However, I disagree this should be enabled by default nor that there should not be any option for the old behavior.  I also think the "delayed BEGIN" feature should still be available to counteract SQLite's particular difficulty with concurrency.

If there is code that relies upon a bug in order to function, which would then fail to function in that way if the bug is fixed, then by definition fixing that bug is a backwards-incompatible change.   Python std lib can't afford to roll out a change that blatantly backwards-incompatible.   The issue regarding comments not being parsed unfortunately should also be a separate issue that needs to be fixed, as nasty as it is that pysqlite tries to parse SQL.

I disagree that most users are expecting SQLite's DDL to be transactional; transactional DDL is a luxury feature to many, including the vast numbers of developers that use MySQL, not to mention Oracle, neither of which have any transactional DDL capabilities.
History
Date User Action Args
2014-01-09 21:20:28zzzeeksetrecipients: + zzzeek, ghaering, Jeremy Banks, r.david.murray, asvetlov, adamtj, dholth, torsten, scott.urban, tshepang, Mark.Bucciarelli
2014-01-09 21:20:28zzzeeksetmessageid: <1389302428.5.0.254115362076.issue10740@psf.upfronthosting.co.za>
2014-01-09 21:20:28zzzeeklinkissue10740 messages
2014-01-09 21:20:27zzzeekcreate