Re: [Django] #13742: implement savepoints for sqlite3

2013-03-11 Thread Django
#13742: implement savepoints for sqlite3
-+-
 Reporter:  rctay|Owner:  aaugustin
 Type:  New feature  |   Status:  closed
Component:  Database layer   |  Version:  master
  (models, ORM)  |   Resolution:  fixed
 Severity:  Normal   | Triage Stage:  Accepted
 Keywords:  sqlite3 savepoints   |  Needs documentation:  0
  nested transactions|  Patch needs improvement:  0
Has patch:  1|UI/UX:  0
  Needs tests:  1|
Easy pickings:  0|
-+-
Changes (by Aymeric Augustin ):

 * status:  assigned => closed
 * resolution:   => fixed


Comment:

 In [changeset:"14cddf51c5f001bb426ce7f7a83fdc52c8d8aee9"]:
 {{{
 #!CommitTicketReference repository=""
 revision="14cddf51c5f001bb426ce7f7a83fdc52c8d8aee9"
 Merged branch 'database-level-autocommit'.

 Fixed #2227: `atomic` supports nesting.
 Fixed #6623: `commit_manually` is deprecated and `atomic` doesn't suffer
 from this defect.
 Fixed #8320: the problem wasn't identified, but the legacy transaction
 management is deprecated.
 Fixed #10744: the problem wasn't identified, but the legacy transaction
 management is deprecated.
 Fixed #10813: since autocommit is enabled, it isn't necessary to rollback
 after errors any more.
 Fixed #13742: savepoints are now implemented for SQLite.
 Fixed #13870: transaction management in long running processes isn't a
 problem any more, and it's documented.
 Fixed #14970: while it digresses on transaction management, this ticket
 essentially asks for autocommit on PostgreSQL.
 Fixed #15694: `atomic` supports nesting.
 Fixed #17887: autocommit makes it impossible for a connection to stay
 "idle of transaction".
 }}}

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #13742: implement savepoints for sqlite3

2013-03-01 Thread Django
#13742: implement savepoints for sqlite3
-+-
 Reporter:  rctay|Owner:  aaugustin
 Type:  New feature  |   Status:  assigned
Component:  Database layer   |  Version:  master
  (models, ORM)  |   Resolution:
 Severity:  Normal   | Triage Stage:  Accepted
 Keywords:  sqlite3 savepoints   |  Needs documentation:  0
  nested transactions|  Patch needs improvement:  0
Has patch:  1|UI/UX:  0
  Needs tests:  1|
Easy pickings:  0|
-+-
Changes (by aaugustin):

 * owner:  nobody => aaugustin
 * status:  new => assigned


-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #13742: implement savepoints for sqlite3

2013-02-08 Thread Django
#13742: implement savepoints for sqlite3
-+-
 Reporter:  rctay|Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Database layer   |  Version:  master
  (models, ORM)  |   Resolution:
 Severity:  Normal   | Triage Stage:  Accepted
 Keywords:  sqlite3 savepoints   |  Needs documentation:  0
  nested transactions|  Patch needs improvement:  0
Has patch:  1|UI/UX:  0
  Needs tests:  1|
Easy pickings:  0|
-+-

Comment (by claudep):

 #15506 was a duplicate with a patch.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #13742: implement savepoints for sqlite3

2011-04-08 Thread Django
#13742: implement savepoints for sqlite3
-+-
   Reporter:  rctay  |Owner:  nobody
   Type:  New|   Status:  new
  feature|Component:  Database layer
  Milestone: |  (models, ORM)
Version:  SVN| Severity:  Normal
 Resolution: | Keywords:  sqlite3 savepoints
   Triage Stage:  Accepted   |  nested transactions
Needs documentation:  0  |Has patch:  1
Patch needs improvement:  0  |  Needs tests:  1
-+-
Changes (by julien):

 * needs_tests:  0 => 1


Comment:

 It'd be great if tests could be written for this. See also #15507 which
 asks for savepoints support with MySQL.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



Re: [Django] #13742: implement savepoints for sqlite3

2010-06-18 Thread Django
#13742: implement savepoints for sqlite3
---+
  Reporter:  rctay | Owner:  nobody 
   
Status:  new   | Milestone: 
   
 Component:  Database layer (models, ORM)  |   Version:  SVN
   
Resolution:|  Keywords:  sqlite3 
savepoints nested transactions
 Stage:  Accepted  | Has_patch:  1  
   
Needs_docs:  0 |   Needs_tests:  0  
   
Needs_better_patch:  0 |  
---+
Changes (by russellm):

  * needs_better_patch:  => 0
  * stage:  Unreviewed => Accepted
  * needs_tests:  => 0
  * needs_docs:  => 0

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.



[Django] #13742: implement savepoints for sqlite3

2010-06-11 Thread Django
#13742: implement savepoints for sqlite3
+---
 Reporter:  rctay   |   Owner:  nobody
   Status:  new |   Milestone:
Component:  Database layer (models, ORM)| Version:  SVN   
 Keywords:  sqlite3 savepoints nested transactions  |   Stage:  Unreviewed
Has_patch:  1   |  
+---
 sqlite3 has supported nested transactions/savepoints since sqlite3 3.6.8;
 support it.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.