| Paradigm(s) | multi-paradigm, logic-paradigm, object-oriented-paradigm |
|---|---|
| Appeared in | 2007 |
| Developer | Semmle |
| Typing discipline | static, strong |
| Major implementations | SemmleCode |
| Influenced by | Datalog |
.QL (pronounced "dot-cue-el") is an object-oriented query language used to retrieve data from relational database management systems. It is reminiscent of the standard query language SQL and the object-oriented programming language Java. .QL is an object-oriented variant of a logic programming language known in the databases community as Datalog. Hierarchical data can therefore be naturally queried in .QL in a recursive manner.
Queries written in .QL are optimised, compiled into SQL and can then be executed on any major relational database management system. .QL query language is being used in SemmleCode to query a relational representation of Java programs.
.QL is developed at Semmle Limited and is based on the company's proprietary technology.
|
Contents
|
.QL has several language features to make queries concise, intuitive and reusable:
The sample query below illustrates use of .QL to query a Java program. This is how one would select all classes that contain more than ten public methods:
from Class c, int numofm
where numofm = count(Method m| m.getDeclaringType()=c
and m.hasModifier("public"))
and numofm > 10
select c.getPackage(), c, numofm
In fact, this query selects not only all classes with more than ten public methods, but also their corresponding packages and the number of methods each class has.
|
|
|||||
| This programming language-related article is a stub. You can help Wikipedia by expanding it. |
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)