> Hello All,
> I'm current working on project, converting a flatfile system, to use MySQL,
> which supports transactions w/Innobase tables. My questions is, as I'm sure many
> have coded using transaction w/Perl and DBI. I understand that there as some
> draw backs to using transactions when not necessary, but very beneficial, when
> needed. What are some good guide lines or "rule of thumb" to following when
> using transactions type tables? 

This is from 'man DBI'. I don't think I can add anything to it:

       The recommended way to implement robust transactions in
       Perl applications is to use `RaiseError' and
       `eval { ... }' (which is very fast, unlike `eval "..."').
       For example:
 
         $dbh->{AutoCommit} = 0;  # enable transactions, if possible
         $dbh->{RaiseError} = 1;
         eval {
             foo(...)        # do lots of work here
             bar(...)        # including inserts
             baz(...)        # and updates
             $dbh->commit;   # commit the changes if we get this far
         };
         if ($@) {
             warn "Transaction aborted because $@";
             $dbh->rollback; # undo the incomplete changes
             # add other application on-error-clean-up code here
         }

-- 
 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
| Ilya Martynov (http://martynov.org/)                                    |
| GnuPG 1024D/323BDEE6 D7F7 561E 4C1D 8A15 8E80  E4AE BE1A 53EB 323B DEE6 |
| AGAVA Software Company (http://www.agava.com/)                          |
 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to