Well I don't know where the stats are, but I've read an article or two noting Rose::DB is quite a bit faster than DBIx::Class with about the same learning curve from what I can remember. Perhaps I can dig up some more information and share it.
| [reply] |
| [reply] |
Well, it depends on what you're extending. For example, RDBO has a very flexible framework for defining new column types, encapsulating inflate/deflate, custom DBI bind_param()s, type-specific attributes, and custom SQL for select, query, and insert into a single logical unit. DBIx::Class is still working on some of these features, and the lack of a standardized way to add support for new column types has led to less support for "rich" column type handling.
As in any large collection of code, there are really only a few performance-critical parts of RDBO that are aggressively optimized. The vast majority of the code is quite modular.
| [reply] |
The best summary of the differences is here. | [reply] |
That summary is a bit out of date. Both RDBO and DBIC have improved a lot since then.
| [reply] |
After considering DBIx::Class, Rose::DB was recommended to me. One thing I can't figure out is why there is the requirement that tables have a primary key. I'm working with a legacy DB in which many tables do not have a primary key. Is Rose::DB simply unusable? Or is there a workaround I haven't found yet?
| [reply] |