in reply to Re: Re (tilly) 7: DBI and table locking
in thread DBI and table locking

I agree with tilly. This all boils down to use. For a lot of web based sites MySQL works fine. It's free and unlike a major RDBMS doesn't require a DBA life support team (ie boring people like me :-). However, for a full blown application with multiple concurrent users with a complicated Database design, MySQL cannot be considered as a serious choice. Aside from whats been mentioned above, such as the lack of Database procs, It doesn't scale so well and the fundamental SQL is restricted for example Update statements cannot have a from clause (ANSI SQL'92 compliant but functionally very restrictive).
  • Comment on Re: Re: Re (tilly) 7: DBI and table locking

Replies are listed 'Best First'.
Re: Re: Re: Re (tilly) 7: DBI and table locking
by salvadors (Pilgrim) on Jan 08, 2001 at 21:53 UTC

    MySQL ... doesn't scale so well

    We're getting WAY off topic here, but I don't think that is at all true. I'm not sure what you mean by scale - concurrent users / queries / whatever, but we're currently putting over 2000+ queries per second through a 500+ tables MySQL set-up - and that's a mix of INSERT/UPDATE/SELECTs - not just SELECTs....

    The trick is to not write SELECTs that take a long time to run (measured in hundredths of seconds!) on tables that also need updated or inserted into.

    Taking a schema which works on Oracle or whatever, and trying to port it to MySQL will fail. Designing to MySQLs strengths and using them to build a large system is however very possible.

    To bring this back on topic slightly, I treat statements like "you can't build a full-blown application with MySQL" just as I treat "you can't build a full-blown application with Perl"...

    Tony