Added doc note that txn_commit does not perform an actual storage commit unless
Tim Bunce [Tue, 16 Jun 2009 13:14:23 +0000 (13:14 +0000)]
there's a DBIx::Class transaction currently in effect

lib/DBIx/Class/Storage.pm

index 941dc07..799a6af 100644 (file)
@@ -242,6 +242,9 @@ sub txn_begin { die "Virtual method!" }
 
 Issues a commit of the current transaction.
 
+It does I<not> perform an actual storage commit unless there's a DBIx::Class
+transaction currently in effect (i.e. you called L</txn_begin>).
+
 =cut
 
 sub txn_commit { die "Virtual method!" }