Abstraction

ORM is an abstraction for SQL databases. Sometimes that abstraction is not sufficient and we want to either bypass part or all of that abstraction and use SQL directly.

Ebean provides mechanisms to use SQL directly.

Queries

  • Where raw() expression
  • Query.findNative
  • Query RawSql
  • SqlQuery
  • SQL Views

Bulk Updates

Stored procedures

JDBC