DBvolution translates database concepts into object-oriented analogs to provide a natural programming interface
DBDatabase | Provides the definition of the database, convenient access to other objects, and services like automatic connection pooling, insert/update/delete, and transactions |
Oracle11AWSDB SQLServerDB MySQLDB H2DB SQLiteDB PostgresDB | Particular instances of DBDatabase pre-packaged for particular databases |
DBTableClassGenerator | creates a data model for a given database automatically. Designed to create static classes that you can add features and value to |
DBRow | Provides the basis for the data model classes. Includes the column(QueryableDatatype) method for creating easily creating conditions and column expressions. |
QueryableDatatype | Encapsulates the differences between a Java datatype and the database equivalent(s) |
DBString, DBNumber, DBInteger, DBDate, DBBoolean, DBBooleanArray, DBByteArray, DBJavaObject, DBPoint2D, DBLine2D, DBPolygon2D | Specific implementations of database datatypes |
DBTable | A simple interface to querying a single table |
DBQuery | A simple interface for querying multiple tables: includes natural joins, outer joins, self joins, query by example, query with conditions, sorting, automatic grouping, cartesian join prevention, blank query prevention, row limits, paging, and much more |
DBMigration | Transform data in one table into information in another table |
DBRecursiveQuery | A simple interface for creating tree and path structures from self-referencing tables |
DBScript | Provides test(DBDatabase) and implement(DBDatabase) methods to make implementing ACID transactions simple and transparent |
DBActionList | A convenient container for database agnostic Insert/Update/Delete actions that provides a script, and revert script, of stored actions for a particular database. Excellent for DBAs, debugging, and traceable activity logs |