NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Wow. (Score:1)
One of the things I actually like about MySQL is the idea of having different Storage Engines tuned for different purposes. I've often thought it would be interesting to some how use Postgres as a MySQL Storage Engine. I think Falcon will be close to that goal. I am looking forward to seeing how 6.0 turns out.
Been there, done that (Score:2)
Re: (Score:1)
I can imagine, however, that the MySQL frontend may create limitations that prevent more advanced storage engines from being as useful.
Re: (Score:2)
Thanks! (Score:1)
With regard to MySQL ignoring the REFERENCES field, I found it preferable to write my schema using REFERENCES and then convert it with SQL::Translator [cpan.org] to the FOREIGN KEY style like so:
MySQL gotchas (Score:1)
longer than 2 years (Score:1)
You seem to be implying that InnoDB tables are slower than MyISAM. For my workload it's been quite the opposite: InnoDB tables have been significantly faster.
The right way to do ENUMs with enforcement is to use a lookup table with foreign keys, just like you would in many other databases. You made a really