execute method (DominoQuery - Java)
Executes a query string passed in according to set parameters and returns named results in a database where they can be accessed again more quickly. For reuse of complex queries, this saves significant processing time.
Defined in
Syntax
DocumentCollection execute ( String query ) throws
NotesException
DocumentCollection execute(String query, String resultname) throws
NotesException
DocumentCollection execute(String query, String resultname, int expirehours)
throws NotesException
Parameters
String query
A string containing a DQL query.
String resultname
An optional name to use to save the DocumentCollection in a database for future DQL reference. The name is case-sensitive.
String int expirehours
The amount of time, in hours, to retain a saved DocumentCollection for future DQL reference. Default is 24 hours if omitted.
Returned value
DocumentCollection
Usage
Returns results from a DQL query. The query is performed and a DocumentCollection is returned for use in all legal contexts. Some runtime errors are also possible and if they occur, their text will appear in the NotesException that is returned.