orm

  • submit to reddit

JEPLayer ORM v1.0, JTA Transactions and Fluid Query API

JEPLayer is a simple persistent ORM API on top of JDBC and JTAhttp://jeplayer.googlecode.comJPELayer is open source Apache v2 licensed. JEPLayer v1.0 adds JTA transaction support for a single or multiple databases, fake JTA transactions based on JDBC, a fluid...

0 replies - 646 views - 12/18/11 by Jose Maria Arranz in Announcements

The (non-)sense of NoSQL O(R)M frameworks

NoSQL seems to be ready for prime time. Several NoSQL companies, including 10gen (MongoDB), DataStax (Cassandra) and Neo Technology (Neo4J), recently received millions in funding to expand their (commercial) NoSQL offerings.

7 replies - 4958 views - 10/14/11 by Davy Suvee in News

Pro JPA 2 Mastering the Java Persistence API

Thus this book let you learn from the scratch JPA 2.0, with an easy curve, already experimented programmers could consider this book like a good reference, below the TOC Chapter 01:...

0 replies - 2006 views - 09/30/11 by Manuel Jordan in Book Reviews

Damn Abstraction - Frameworks, ORM, Filesystems, VMs, etc.

In May 2011 I was asked to do a presentation at GotoCon CopenHagen. Unfortunately due to illness I had to cancel at the last moment. I hope to make up for it in October at GotoCon Aarhus The slides were already up on slideshare, but now I finally found the...

9 replies - 5300 views - 09/06/11 by Patrick Debois in News

ActiveJDBC: new Java ORM and an ActiveRecord implementation

When I learned Ruby on Rails, I was first and foremost impressed with ActiveRecord. For those who do not know ActiveRecord, it is a Ruby on Rails' ORM layer, which is an equivalent to Hibernate in Java. However, ActiveRecord is easier to work with because it...

1 replies - 1073 views - 07/11/11 by Igor Polevoy in Announcements

View ORM queries in page debugging

One of the things that I really love about Coldfusion 9 is the hibernate integration (ORM). The only thing that irriates me about using the ORM features is that the generated SQL is hidden away from you the developer. You can set up your ColdFusion...

0 replies - 4129 views - 06/22/11 by John Whish in News

ORM hibernate sessions

I see quite a lot of confusion about how hibernate sessions work in ColdFusion 9's ORM (and I find it confusing as well!). So I thought I'd put together various examples to see what happens. These code samples are for ColdFusion 9.01 so if you're using...

1 replies - 4705 views - 06/19/11 by John Whish in News

How to use ORM and onSessionEnd()

At 16applications I use ORM extensively. Recently I wanted to track when users sessions timed out which the onSessionEnd function in Application.cfc is perfect for. onSessionEnd is interesting in that its not part of a standard ColdFusion request process...

1 replies - 3070 views - 06/09/11 by Sam Farmer in News

5 things that PHP envies Java for

PHP and Java have somewhat different models of execution, contrapposing shared-nothing processes to resident JVMs. But they have also many similarities, like their object-oriented model.I've seen many programmers starting to think that Java is old and...

13 replies - 13143 views - 01/20/11 by Giorgio Sironi in Articles

Adding CRUD Capability to Spring MVC

This article is intended for people who are interested in Spring and Hibernate, especially those who are new to the technology. Create, Read, Update and Delete capabilities are essential to a web based application. In this article, I'll be sharing how to add...

5 replies - 6601 views - 12/09/10 by Paul Sydney Orozco in Articles

Pro JPA 2. Mastering the Java Persistence API

The book presents JPA 2 in very comprehensive, but at the same time, rather concise manner (a very hard feat).I am usually wary of the second editions intended to incorporate revised...

2 replies - 4649 views - 12/06/10 by Oleksandr Alesinskyy in Book Reviews

Real Android apps leveraging db4o persistence engine (Part 2)

This the second delivery in a series of articles targeted at showing developers how db4o (an open source database that leverages today's object-oriented languages, systems, and mindset) is being used in several Android projects to avoid all the pitfalls and...

0 replies - 3536 views - 11/30/10 by German Viscuso in Articles

MyBatis (formerly iBatis) – Examples and Hints using SELECT, INSERT and UPDATE Annotations

MyBatis is a lightweight persistence framework for Java and .NET. This blog entry addresses the Java side. MyBatis is an alternative positioned somewhere between plain JDBC and ORM frameworks (e.g. EclipseLink or Hibernate). MyBatis usually uses XML, but...

0 replies - 19333 views - 11/02/10 by Kai Wähner in Articles

Ujorm ORM Framework 1.00

I would like to announce that the ORM framework Ujorm 1.00 has been released. The open-source framework was designed for the rapid Java development based on a relation database and the framework provides a type-safe API for database queries so the most of...

0 replies - 827 views - 10/19/10 by in Announcements

Reduce Boilerplate Code for DAO's -- Hades Introduction

Most web applications will have DAO's for accessing the database layer. A DAO provides an interface for some type of database or persistence mechanism, providing CRUD and finders operations without exposing any database details. So, in your application you...

4 replies - 9384 views - 10/15/10 by Shekhar Gulati in Articles