Someone suggested I use an ORM for a project I'm designing but I'm having trouble finding information on what it is or how it works. Can anyone give me a brief explanation or a link as to where I can learn more about it?
|
|
|||||
|
|
|
Storm is a great option for those using python. |
||
|
|
|
|
Sure. ORM stands for "Object to Relational Mapping" where
In applications where you don't use a ORM framework you do this by hand. Using an ORM framework would allow you do reduce the boilerplate needed to create the solution. So let's say you have this object.
and the table
Using an ORM framework would allow you to map that object with a db record automagically and write something like:
And have the employee inserted into the DB. Oops it was tno that brief but I hope it is simply enough to catch other articles you red |
||
|
|
|
|
The first chapter of the Hibernate book Java Persistence with Hibernate (3rd ed.) has an excellent overview of general ORM concepts and discusses motivation and design of ORMs. Highly recommended, even if you don't work with Java. |
||
|
|
|
|
Quick introAn ORM (Object-Relational Mapping) is a tool that let you query and manipulate data from a database using an object paradigm. It's a completely ordinary library written in your language that encapsulates the code needed to manipulate the data, so you don't use SQL anymore, but directly an object of you language. E.G, a completely imaginary case with a pseudo language : You have a book class, you want to retrieve all the books of which the author is "Linus". Manually, you would do something like that :
With an ORM, it would look like that :
The mechanical part is taken care automatically by the ORM. Pros and consUsing an ORM save a lot of time because :
Using an ORM is more flexible because :
But ORM can be a pain :
How to learn about them ?Well, use one. What ever the one you choose, they all use the same principles. There are a lot of ORM around here :
If you want to try an ORM in Web programming, you'd better use directly an entire framework stack like : Do not try to write you own ORM, unless to learn something. This is a gigantic piece of work, and the old ones took a lot of time before becoming reliable. |
||||||||||||
|
|
|
Like all acronyms it's ambiguous, but I assume they mean object-relational mapper -- a way to cover your eyes and make believe there's no SQL underneath, but rather it's all objects;-). Not really true, of course, and not without problems -- the always colorful Jeff Atwood has described ORM as the Vietnam of CS;-). But, if you know little or no SQL, and have a pretty simple / small-scale problem, they can save you time!-) |
||
|
|
|
|
An ORM (Object Relational Mapper) is a piece/layer of software that helps map your code Objects to your database. Some handle more aspects than others...but the purpose is to take some of the weight of the Data Layer off of the developer's shoulders. Here's a brief clip from Martin Fowler (Data Mapper): Patterns of Enterprise Application Architecture Data Mappers |
||
|
|
|
|
This is a huge topic. Pick up a good hibernate book and it should explain ORM in detail before getting to the nitty gritty hibernate material. |
||
|
|
