Package com.arcadedb.query.select
Class SelectWhereLeftBlock
- java.lang.Object
-
- com.arcadedb.query.select.SelectWhereBaseBlock
-
- com.arcadedb.query.select.SelectWhereLeftBlock
-
public class SelectWhereLeftBlock extends SelectWhereBaseBlock
Native Query engine is a simple query engine that covers most of the classic use cases, such as the retrieval of records with a where condition. It could be much faster than the same SQL query because it does not use any parser and it is very JIT friendly. Future versions could translate the query into bytecode to have an even faster execution.- Author:
- Luca Garulli ([email protected])
-
-
Field Summary
-
Fields inherited from class com.arcadedb.query.select.SelectWhereBaseBlock
select
-
-
Constructor Summary
Constructors Constructor Description SelectWhereLeftBlock(Select select)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectWhereOperatorBlock
parameter(String parameterName)
SelectWhereOperatorBlock
property(String name)
-
Methods inherited from class com.arcadedb.query.select.SelectWhereBaseBlock
setParameter, setProperty
-
-
-
-
Constructor Detail
-
SelectWhereLeftBlock
public SelectWhereLeftBlock(Select select)
-
-
Method Detail
-
property
public SelectWhereOperatorBlock property(String name)
-
parameter
public SelectWhereOperatorBlock parameter(String parameterName)
-
-