in reply to Re: Re: Re: mySQL hits or Storable retrieves?
in thread mySQL hits or Storable retrieves?

DBI does not support MySQL.
DBD::MySQL is the module that DBI uses to support MySQL.
DBD::MySQL is only able to support transactions as far as MySQL can, ie afaik not at all.
Maybe you are thinking of the MySQL module, an old (and obsoleted) perl4 (?) compatibility mode module?

Appendix B of the Cheeta book describes the differences between the different database systems that the DBI-drivers support (or to be more correct: describes the way that the drivers implement and/or support the many DBI features, eg date-formats, transaction handling, blob handling), and is definitely worth reading if you use the DBI.

  • Comment on Re: Re: Re: Re: mySQL hits or Storable retrieves?

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: mySQL hits or Storable retrieves?
by ralphie (Friar) on Oct 03, 2001 at 17:20 UTC
    actually, i believe that the newest version of mysql does have soome limited transaction capability, if you use the right extensions. i don't use it in that capacity, so i can't comment on the implementation beyond suggesting that anyone interested should check the various mysql-oriented sites.