Next: Query Handling Predicates, Previous: Message Handling Predicates, Up: ref-msg [Contents][Index]
All user input in the Prolog system is handled by a single predicate:
ask_query(QueryClass, Query, Help, Answer)
QueryClass, described below, specifies the form of the query interaction. Query is an abstract message term specifying the query text, Help is an abstract message term used as a help message in certain cases, and Answer is the (abstract) result of the query.
ask_query/4
is a built-in predicate, so that users can
invoke it to have their own queries processed in the same way as the
system queries.
The processing of queries is highly customizable. For example, this allows changing the language of the input expected from the user, or to make queries appear in dialog windows rather than on the terminal.
• Query Classes | Query Classes | |
• Query Phases | Phases of Query Processing | |
• Query Hooks | Hooks in Query Processing | |
• Default Input Methods | Default Input Methods | |
• Default Map Methods | Default Map Methods | |
• Default Query Classes | Default Query Classes |