Expressions give you the ability to make complex comparisons and transformations easily and reliably
marq.column(marq.name).length().mod(2).is(0)
QueryableDatatypes, like the DBString marq.name above, provide excellent methods for normal queries, but sometimes you need more than a simple comparison with known values. DBExpressions like StringExpression, NumberExpression, and DateExpression add all the functions you expect from a database and many more
Starting an expression is easy: either use the column() method of the DBRow class shown above, or use the static value() method of the appropriate expression class — for instance, StringExpression.value("a string")
marq.column(marq.uidMarque)...
NumberExpression.value(0)...
The column() method uses a fairly common DBvolution pattern: supplying a DBRow instance and a field of that instance. A good example would be "this.column(this.aField)". With the column() method it produces an expression that encapsulates the concept of the particular column and references it in the query
marq.column(marq.uidMarque).mod(2)
When you need to start your expression with a non-database variable use the value() method. Value() is available for all the common expression types: BooleanExpression, DateExpression, NumberExpression, and StringExpression. The returned object is an expression of the correct type from which you can build your full expression. You won't need the value() method often as expression methods automatically handle common java types
NumberExpression.value(15).mod(2)
Expressions use a fluent API to allow readable expressions and to maintain type safety. As you extend the expression it automatically switches to the the correct type and presents you with the operations that are allowed for that type. For instance, you can't accidentally compare a String and a Date as there is no StringExpression.is(Date) or DateExpression.is(String), and your IDE or compiler will identify the problem long before anything is sent to the database
To use an expression within a DBQuery or DBTable you need the addCondition() method and a BooleanExpression
query.addCondition(marq.column(marq.creationDate).monthIs(3));
A BooleanExpression is created by the many comparison methods within the other expression types: is(), isBetween(), isIn(), isNot(), isLessThan(), isLike(). Most of the methods start with "is" so they are easy to spot
You can also combine BooleanExpressions using the anyOf() and allOf() methods. Or invert them using the not() method. There are also the static trueExpression() and falseExpression() methods when you already know the answer
dbQuery.addCondition(
BooleanExpression.anyOf(
marque.column(marque.uidMarque).is(1),
marque.column(marque.uidMarque).is(2)
)
);