Category:Datalog
Datalog
This programming language may be used to instruct a computer to perform a task.
Listed below are all of the tasks on Rosetta Code which have been solved using Datalog.
This programming language may be used to instruct a computer to perform a task.
See Also: |
|
---|
Datalog is a query and rule language for deductive databases that syntactically is a subset of Prolog.
In contrast to Prolog:
- it disallows complex terms as arguments of predicates, e.g. p(1, 2) is admissible but not p(f1(1), 2),
- imposes certain stratification restrictions on the use of negation and recursion, and
- only allows range-restricted variables, i.e. each variable in the conclusion of a rule must also appear in a not negated clause in the premise of this rule.
These rules make the set of all possible proofs finite, with the consequence that all datalog programs terminate (unlike Prolog programs). As a consequence, statements and predicates of a program can be stated in any order (unlike Prolog).
See Also
Subcategories
This category has the following 3 subcategories, out of 3 total.
@
- Datalog examples needing attention (empty)
- Datalog Implementations (6 P)
- Datalog User (empty)
Pages in category "Datalog"
The following 3 pages are in this category, out of 3 total.