Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Blog

0

JPA : Java Persistence API [ JPA ] : Concept

What is JPA ( Java Persistence API )? Object-Relational Mapping (ORM) Introduction to Entity Entity Manager API Life Cycle of Entity Entity Listeners and Callbacks Packaging a persistence unit Obtaining an Entity Manager Example...

ActiveJDBC – as ORM :: More Examples 0

ActiveJDBC – as ORM :: More Examples

ActiveJDBC More Examples ActiveJDBC More Examples Some more concepts from ActiveJDBC ActiveJDBC is lazy by default. In this sense, it has semantics closer to ActiveRecord than Hibernate. This means that if you have a...

0

ActiveJDBC – as ORM : Insert/Update/Delete/List Example

Insert/Update/Delete/List Example Downloads Examples Insert/Update/Delete/List Example Here, in this example we are using insert, list record, limit records, sort records and pagination or records through ActiveJDBC. Updating and deleting records already explained in previous...

ActiveJDBC – as ORM : Examples 0

ActiveJDBC – as ORM : Examples

ActiveJDBC Example Downloads Examples ActiveJDBC Example Travel.java package com.javaskool; import org.javalite.activejdbc.Model; import org.javalite.activejdbc.annotations.Table; @Table(“traveltab”) //@IdName(“travelId”) //If your table cannot provide a primary key column named id //(for instance due to corporate naming standards), you...

ActiveJDBC – as ORM : Instrumentation 0

ActiveJDBC – as ORM : Instrumentation

Instrumentation in ActiveJDBC Instrumentation in ActiveJDBC Instrumentation Intro ActiveJDBC requires instrumentation of class files after they are compiled. This is accomplished with an Instrumentation package provided by the project. There are three ways to...

0

ActiveJDBC – as ORM : Concept

ActiveJdbc Concepts Why ORM? ActiveJdbc Publication Design principles Understanding JavaBeans Jar File Required Performance & Code Compare between ActiveJDBC and Hibernate Create/Modify/Delete/List records Using ActiveJDBC ActiveJdbc Concepts Introduction ActiveJDBC is developed by Igor Polevoy....

0

Hibernate Framework : ORM Tool :: Hibernate Using Annotation

Hibernate Annotation Intro Hibernate Annotation Explaination Hibernate Annotation Examples Download Examples Hibernate Annotation Intro? Hibernate Annotation Hibernate 3.1 offers a variety of additional annotations that you can mix/match with your EJB 3 entities. They...