in reply to Class::DBI -- does it get any easier?

Does it get easier? Ruby's ActiveRecord :)

But no, I know what you mean. Automagical stuff like that is cool.

  • Comment on Re: Class::DBI -- does it get any easier?

Replies are listed 'Best First'.
Re^2: Class::DBI -- does it get any easier?
by perrin (Chancellor) on Nov 12, 2004 at 19:15 UTC
    Tangram is similar. However, things like that end up having limitations that become problems in real-world apps. With Class::DBI, there is literally no limit on what SQL you can use with it. That's the reason I use it.
      I can see it would be a problem when making larger apps and apps that use existing tables, definitely. But for building new apps, it is unbelievable useful. I have one real-world app running on our intranet right now, but it's pretty light use and doesn't have that many tables to it. The "Tables" link above seems fairly similar to ActiveRecord, so I'll have to check it out as well -- though I will say I'm more interested in the "::DBI" aspect of it all than the class thing. I'm not a firm believer of sticking inheritance models in databases.