Description
Returns the name of a query.
Category
Query interface
Syntax
public String getName()
Example
The following example retrieves the name of a query and writes it back to the user:
Query query = request.getQuery() ; response.write( "The query name is: " + query.getName() ) ;