Home    |Web Directory    |Metasearch    |Message Boards    |Classified Ads|

Web Directory

Home

Web Directory

Metasearch

Message Boards

Classified Ads








Object Persistence (54)

Categories:

See Also:
Sites:

http://www.ociweb.com/jnb/jnbNov2003.html
» A Simple Data Access Layer using Hibernate Open in a new browser window
   Hibernate is a popular open source Object-Relational mapping tool. This article by Mario Aquino provides a quick introduction to get started with Hibernate.
   http://www.ociweb.com/jnb/jnbNov2003.html
http://abra.sourceforge.net/
» Abra Open in a new browser window
   A Java library and a set of tools that can be used for storing and retrieving Java objects in a relational database. [Open source, BSD license]
   http://abra.sourceforge.net/
http://db.apache.org/ojb/
» Apache ObJectRelationalBridge - OJB Open in a new browser window
   A framework that provides transparent persistence of Java objects for JDBC-compliant RDBMS. Implements ODMG 3.0, JDO and uses XML-based O/R Mapping. [Open Source, LGPL]
   http://db.apache.org/ojb/
http://www.kimble.easynet.co.uk/cobra/index.htm
» COBRA Open in a new browser window
   An object persistence layer written in Java which uses a relational database to provide persistent storage, whilst shielding programmers from the details of relational database access. [Open Source, GPL]
   http://www.kimble.easynet.co.uk/cobra/index.htm
http://carrierwave.sourceforge.net/
» CarrierWave Open in a new browser window
   Provides the following features: build generated client side data objects structurally mirroring server side business objects; pluggable persistence; pluggable binding between client and server; pluggable query mechanism; zero-configuration externalizatio
   http://carrierwave.sourceforge.net/
http://cayenne.apache.org/
» Cayenne Open in a new browser window
   An Object-Relational mapping framework working with relational databases. [Open Source]
   http://cayenne.apache.org/
http://www.thoughtinc.com/
» CocoBase Enterprise O/R Open in a new browser window
   Object/Relational mapping tool, with customized mappings for each major EJB server (including JBoss). [Commercial]
   http://www.thoughtinc.com/
http://dbobjects.sourceforge.net/
» DB Objects for Java Open in a new browser window
   Lightweight and flexible solution for storing and retrieving java objects into and from relational databases, without using SQL. [Open source, LGPL]
   http://dbobjects.sourceforge.net/
http://www.visual-paradigm.com/product/dbva/
» DB Visual Architect Open in a new browser window
   An Object-Relational mapping tool. Generate persistent enable Java source from Class Diagram or ERD. A diagram editor is provided. It can generate code for client applications and server side applications. [Commercial]
   http://www.visual-paradigm.com/product/dbva/
http://www.eclipse.org/eclipselink/
» EclipseLink Open in a new browser window
   ORM project from Eclipse (Oracle, Sun). Provides ORM, JPA, OXM, JAXB, SDO, WebServices, EIS. JPA 2.0 reference implementation, JPA provider of Oracle WebLogic, Sun Glassfish. [Open source, EPL]
   http://www.eclipse.org/eclipselink/
http://www.jslope.com/formpers.html
» FormPers Open in a new browser window
   A persistence framework with forms automation. It support on-the-fly SQL table creation/structure modification base on definition in Java class, automated form creation and automated form result parsing. [Freeware]
   http://www.jslope.com/formpers.html
http://www.hibernate.org/
» Hibernate ORM framework Open in a new browser window
   Hibernate an open source Java persistence framework project. Perform powerful object relational mapping and query databases using HQL and SQL. [Open source, LGPL]
   http://www.hibernate.org/
http://www.certiv.net/products/inductor.html
» Inductor Open in a new browser window
   A fully type-save, declarative ORQL for Hibernate, JDO, and EJB.
   http://www.certiv.net/products/inductor.html
http://www.softwaretree.com/products/jdx/Jdx1.htm
» J-Database Exchange (JDX) Open in a new browser window
   A cross-platform solution for transactional persistence of Java objects . By Software Tree, Inc. [Commercial]
   http://www.softwaretree.com/products/jdx/Jdx1.htm
http://jdbm.sourceforge.net/
» JDBM Open in a new browser window
   A simple transactional persistence engine for Java. It can used to store a mix of objects and BLOBs, and all updates are done in a transactionally safe manner. JDBM also provides scalable data structures, such as HTree and B+Tree, to support persistence o
   http://jdbm.sourceforge.net/
http://my.execpc.com/~gopalan/java/jdo/jdo_vs_ejb.html
» JDO vs. EJB by Gopalan Suresh Raj Open in a new browser window
   Compares and contrasts the Two Persistence Frameworks provided Java. Java Data Objects(JDO) which provides Language Transparent Orthogonal Persistence with Enterprise JavaBeans(EJB) that provides Functional Persistence.
   http://my.execpc.com/~gopalan/java/jdo/jdo_vs_ejb.html
http://jgrinder.sourceforge.net/
» JGrinder Open in a new browser window
   Initially began as a solution for Object/Relational persistence. Supporting this involved the creation of many utility classes and tools that could be used to accelerate any application development effort. [Open source, LGPL]
   http://jgrinder.sourceforge.net/
http://jorm.objectweb.org/
» JORM (Java Object Repository Mapping) Open in a new browser window
   The ObjectWeb open source adaptable persistence service. It is used to offer CMP 2.0 for the JOnAS server, as well as Speedo, a JDO implementation. [Open source, LGPL]
   http://jorm.objectweb.org/
http://en.wikibooks.org/wiki/Java_Persistence
» Java Persistence Open in a new browser window
   Wikibook on JPA, and Java persistence from Wikimedia Wikibooks.
   http://en.wikibooks.org/wiki/Java_Persistence
http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&f=78
» JavaRanch - Object Relational Mapping Open in a new browser window
   JavaRanch Big Moose Saloon forum for object relational mapping.
   http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&f=78
http://jaxor.sourceforge.net/
» Jaxor Open in a new browser window
   Simple and lightweight Object/Relational mapping and persistence framework. Configuration is stored in XML files and code generation relies on Apache velocity templates. [Open Source, Apache]
   http://jaxor.sourceforge.net/
http://www.onjava.com/pub/a/onjava/2006/09/13/dont-let-hibernate-steal-your-identity.html
» ONJava.com: Don't Let Hibernate Steal Your Identity Open in a new browser window
   Typical means of establishing uniqueness and identity in databases, and thus Hibernate, don't necessarily suit Java's identity-oriented equals() and hashCode() methods. James Brundege has another idea for how to solve this problem.
   http://www.onjava.com/pub/a/onjava/2006/09/13/dont-let-hibernate-steal-your-identity.html
http://www.onjava.com/pub/a/onjava/2003/01/08/ojb.html
» ONJava.com: Object-Relational Mapping with Apache Jakarta OJB Open in a new browser window
   Charles Chan demonstrates OJB, an open source Java object persistence framework.
   http://www.onjava.com/pub/a/onjava/2003/01/08/ojb.html
http://www.objectmatter.com/
» Object Matter Open in a new browser window
   Provides an Object/Relational mapping tool with a persistence layer. Also features an introduction to Object/Relational mapping. [Commercial]
   http://www.objectmatter.com/
http://www.service-architecture.com/object-relational-mapping/
» Object-Relational Mapping Open in a new browser window
   Information and facts about object-relational mapping products, architecture problem-solving, and direction in product comparison and selection.
   http://www.service-architecture.com/object-relational-mapping/
http://odal.sourceforge.net/
» Objective database abstraction layer (ODAL) Open in a new browser window
   A database persistence framework including query API, ORM, data validation/conversion, stored procedure support, code generation. Download and documentation are offered. [Open source, LGPL]
   http://odal.sourceforge.net/
http://osage.sourceforge.net/
» Osage Open in a new browser window
   Object-Relational mapping for JDBC databases, with XML features. [Open Source, LGPL]
   http://osage.sourceforge.net/
http://www.simpleorm.org/
» SimpleORM Open in a new browser window
   Implement, low overhead object/relational mapping on top of Java JDBC. [Open source]
   http://www.simpleorm.org/
http://www.oracle.com/technology/products/ias/toplink/index.html
» TopLink Open in a new browser window
   Object-relational bridge by Oracle. Quick tour, tutorials, and howtos. [Commercial]
   http://www.oracle.com/technology/products/ias/toplink/index.html
http://db.apache.org/torque/
» Torque Open in a new browser window
   An XML-based persistence layer. Part of the Apache Jakarta family. [Open Source, BSD-like]
   http://db.apache.org/torque/
http://ibatis.apache.org/
» iBatis Open in a new browser window
   XML-based Object/Relational mapping and persistence framework as well as a data access abstraction layer. [Open source]
   http://ibatis.apache.org/
http://jrf.sourceforge.net/
» jRelationalFramework Open in a new browser window
   A lightweight framework that was written to automate the most tedious 80% of relational database access coding and leave the other 20% to the developer. [Open Source, MPL]
   http://jrf.sourceforge.net/
http://jstorm.sourceforge.net/
» jStorm Open in a new browser window
   Simple tool for object-relational mapping, based on DbObjects, with mechanisms for aggregation and concurrency stamps. [Open Source, GPL]
   http://jstorm.sourceforge.net/

This category needs an editor

Last Updated: 2008-11-10 14:30:10





Help build the largest human-edited directory on the web.
Submit a Site - Open Directory Project - Become an Editor

The content of this directory is based on the Open Directory and has been modified by GoSearchFor.com

Free previews by Thumbshots.org