Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

daobab-projects/daobab-core

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DAOBAB

Daobab is a Java ORM (Object Relational Mapping) library, allowing to build an SQL as fully object-oriented Java code, which may be used on:

  • database
  • collections
  • buffers
  • remotely

Daobab uses Java8 features to recreate the relations between entities into object-oriented code.

Example query

public List<Customer> example() {
    return db.select(tabCustomer)
            .where(and()
                    .equal(tabCustomer.colActive(), true)
                    .equal(tabCustomer.colLastName(), "WILSON"))
            .limitBy(100)
            .orderAscBy(tabCustomer.colLastName())
            .findMany();
}

Building from sources

The build requires at least Java 8 JDK as JAVA_HOME.

Repository content

  • daobab-core - Daobab ORM sources

License Apache License 2.0

http://www.apache.org/licenses/LICENSE-2.0

detailed information and examples

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.