Обсуждение: Is this an overkill?

Поиск
Список
Период
Сортировка

Is this an overkill?

От
Dan Ostrowski
Дата:
Hello all..

I am a PHP programmer that usualy uses MySQL, but I have been pining to use PostgreSQL for a while.  I hate people that
areafraid to learn or never want to experiment in this industry.. i always want to know more than i do now... and
PostgreSQLhas always intrigued me because of it's wonderful feature set and imbedded languages... 

I was thinking of using it on my current project.. which would be:

For the web:
   Keeping track of "seasons", "teams", "standings", "scores", "news", etc. for a sports complex that has ( at present
)12 programs and will be expanding. Each of these programs will have teams, divisions, etc. Plus general news. 


For the office:
  We would have a local DB ( that is accessable from the web ) to keep track of purchases and customer information. It
willbe accessed/updated either over the web or locally via desktop software that I will write ( probably with LlamaCard
forPerl ). 

Customer wise, we would have several thousand a year.  Program info wise, we would have as many entries as for
customers,but would change more often. 


Is this kind of thing ... well too small to use Postgres for? Should I just suck it up and use MySQL and do all the
dataintegrity things in PHP?  I mean, I LOVE to learn about this stuff, but would it end up being more frustration than
isnessesary for a small project like this? 

Any help is valued,
regards,
dan

Re: Is this an overkill?

От
dima
Дата:
> Is this kind of thing ... well too small to use Postgres for?
 >Should I just suck it up and use MySQL and do all the data integrity
things in PHP?
 >I mean, I LOVE to learn about this stuff, but would it end up being
more frustration than
 >is nessesary for a small project like this?
i usually use postgresql for my projects. i use mysql databases as util
space for logs etc (because of faster insertion/deletion). it's really
awful to keep track of data integrity by the external software.
so, you surely should try postgres



Re: Is this an overkill?

От
Dan Ostrowski
Дата:
Thanks for the advice! I was thinking of a hybrid system using both, and I
have database abstraction files written already, so that is what I will
probably use.

regards,
dan