There is no need to explicitly create instances of this class. Instead use {@link DBRowSet#count() or @link DBColumnExpr#count() }
303304305306307308309
* * @return a new DBCountExpr object */ public DBColumnExpr count() { return new DBCountExpr(this); }
313314315316317318319
952953954955956957958
* * @return the new DBFuncExpr object */ public DBColumnExpr count() { return new DBCountExpr(this, false); }
963964965966967968969
* * @return the new DBFuncExpr object */ public DBColumnExpr countDistinct() { return new DBCountExpr(this, true); }
317318319320321322323