Method Name | Description | Parameters | Return type | Notes |
---|---|---|---|---|
list | Creates a list with the results of the given boql expressions | EboContext ctx, String boql | boObjectList | |
list | Creates a list with the result of the given boql expression and using the arguments passed as parameters | EboContext ctx, String boql, Object[] boqlargs | boObjectList | To use this function the boql expression must declare the parameters using the '?' sign, like for example: "select Ebo_Perf where BOUI = ?" and using as arguments and expression like new Object[]{"11111"} |
list | Creates a list with the result of the given boql expression and altering the pagesize from the default and requesting a given page of the results | EboContext ctx, String boql, int page, int pageSize | boObjectList |