http://www.perlmonks.org?node_id=376179


in reply to •Re: Image Hosting Application
in thread Image Hosting Application

(hint: PostgreSQL or Oracle, but probably not MySQL).

I think MySQL has supported transactions (and foreign keys and such) for quite a long time now. From its manual: MySQL Server (version 3.23-max and all versions 4.0 and above) supports transactions with the InnoDB and BDB transactional storage engines. InnoDB provides full ACID compliance.

Replies are listed 'Best First'.
•Re^3: Image Hosting Application
by merlyn (Sage) on Jul 21, 2004 at 15:31 UTC
    Yes, but from what I understand, when you start using InnoDB, you sacrifice the only advantage MySQL has, which is speed and reliability for non-transactional database accesses. So if you want a fast, reliable transactional database, even MySQL with InnoDB doesn't cut it. Hence, my recommendation for PostgreSQL or Oracle, depending on your budget.

    -- Randal L. Schwartz, Perl hacker
    Be sure to read my standard disclaimer if this is a reply.