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.
Yay! Relgious war! (Score:1)
While I suspect you missed a couple of simple things, you're mostly right (especially for pre 8.0)
I remember starting with MySQL back around 2000 and it was quite easy to set up.
Postgres still remains harder, especially WRT the whole pg_hba.conf or whatever that bloody file is.
I'm sure it's more secure or something, but it is still annoying.
The more important underlying issue for me though is I'm not and never wish to be a sysadmin. Installation of any database (dear god Oracle *sob*) I just
Re:Yay! Relgious war! (Score:2)
Actually I haven't found MySQL hurts you on a day to day basis and neither have the guys at google, who looked at porting to postgres and decided (wisely) IMHO to stick with mySQL.
I've found Postgres much more painful, and not just for setting up - I have to write my own bloody cast functions to convert boolean to int, I have dozens of small little queries utilising the ease of MySQL in the application I'm porting and find that each one requires a great deal of mucking about to replicate in postgres.
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Re:Yay! Relgious war! (Score:2)
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Reply to This
Parent
Re:Yay! Relgious war! (Score:2)
And why are you casting from boolean to integer anyway. Is this down to the fact that you've assumed integers instead of booleans everywhere in your code because you're used to MySQL (which AFAIK didn't have proper boolean columns fo
Re:Yay! Relgious war! (Score:2)
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;