Retreive data from multiple tables using the DBQuery object. Create your DBQuery using DBDatabase's convenient getDBQuery(DBRow....) method:
DBQuery dbQuery = database.getDBQuery(marque, new CarCompany());
DBQuery provides methods to add required and optional ("OUTER") tables, limit the rows returns, sort the rows on the database, allow blank queries, and even allow cartesian joins. There are also methods to automatically add all the tables related to the query
dbQuery.addOptional(new Vehicle());
dbQuery.setRowLimit(30);
dbQuery.setSortOrder(marque.column(marque.name));
dbQuery.setBlankQueryAllowed(true);
List<DBQueryRow> allQueryRows = dbQuery.getAllRows();
List<Marque> allMarques = dbQuery.getAllInstancesOf(marque);
Using a DBQuery instance allows you to retrieve all instances of a DBRow quickly without scrolling through all the DBQueryRows. Just call getAllInstancesOf(DBRow) to retrieve a list of each instance. This quickly converts a long query to a small number of distinct objects
dbQuery.add(DBRow.... ) adds more tables to the query as required tables. addOptional(DBRow.... ) adds the tables but uses outer join syntax. All DBRow objects can be added as optional and a full outer join will be performed
When a table has a foreign key to itself, DBvolution makes it easy to follow the implied hierarchy. DBRecursiveQuery provides methods to find the path to the top of the hierarchy, or a produce a tree of the entire hierarchy.
DBRecursiveQuery recursive = new DBRecursiveQuery(staffQuery, employee.column(employee.manager));
List managers = recursive.getAncestors();
DBRecursiveQuery recursive = new DBRecursiveQuery(managerQuery, employee.column(employee.manager));
List staff = recursive.getDescendants();