• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Difference between CMS and ORM ?

 
Ranch Hand
Posts: 42
Hibernate Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have worked on two different technologies like CMS in Broadvision and Hibernate ORM .

I dont think both in common have their own terminology for mapping relational tables with Objects.

In Hibernate the conversion of relations to object is handled by the ORM where as in CMS we treat a record as a content(not specifically).

So in CMS all the operations on database records can be done in an object oriented way like updation,creation and deletion w.r.t CONTENT.

As far as the ease of use is concerned CMS is more easier and more abstracted than Hibernate also the learning curve is just knowing the APIs and the UIs which are needed to publish content.

Here i wanted to know

1. what exactly diffrentiates a CMS-Model to an ORM-Model.
2. Which one is more effiecient and has more features?

Thanks,
Jack.
 
Ranch Hand
Posts: 820
IntelliJ IDE VI Editor Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jack Numen wrote:Hi,
I have worked on two different technologies like CMS in Broadvision and Hibernate ORM .

I dont think both in common have their own terminology for mapping relational tables with Objects.

In Hibernate the conversion of relations to object is handled by the ORM where as in CMS we treat a record as a content(not specifically).

So in CMS all the operations on database records can be done in an object oriented way like updation,creation and deletion w.r.t CONTENT.

As far as the ease of use is concerned CMS is more easier and more abstracted than Hibernate also the learning curve is just knowing the APIs and the UIs which are needed to publish content.

Here i wanted to know

1. what exactly diffrentiates a CMS-Model to an ORM-Model.
2. Which one is more effiecient and has more features?

Thanks,
Jack.


CMS = Content Management System
ORM = Object Relational Mapping

Unless you mean something else by these names, this question makes no sense. For starters, most java-based CMS products use some kind of ORM. It is like asking which is more efficient, a Honda or the engine inside the Honda.
 
reply
    Bookmark Topic Watch Topic
  • New Topic