Package | Description |
---|---|
org.datanucleus.store.rdbms.sql.expression |
Series of expressions representing conditions in SQL statements.
|
org.datanucleus.store.rdbms.sql.method |
Support for invocation of Java methods, typically using SQL functions.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionLiteral
An SQL expression that will test if a column of a table falls within the given Collection of values.
|
Modifier and Type | Method and Description |
---|---|
protected SQLExpression |
CollectionContainsMethod.containsAsInnerJoin(CollectionExpression collExpr,
SQLExpression elemExpr)
Method to return an expression for Collection.contains using INNER JOIN to the element.
|
protected SQLExpression |
CollectionContainsMethod.containsAsSubquery(CollectionExpression collExpr,
SQLExpression elemExpr)
Method to return an expression for Collection.contains using a subquery "EXISTS".
|
protected SQLExpression |
ListGetMethod.getAsInnerJoin(CollectionExpression listExpr,
SQLExpression idxExpr)
Implementation of List.get() using an inner join to the table representing the list,
adding a condition on the index and returning the element.
|
protected SQLExpression |
ListGetMethod.getAsSubquery(CollectionExpression listExpr,
SQLExpression idxExpr)
Implementation of Collection.get() using a subquery on the table representing the collection,
adding a condition on the index and returning the element.
|
Copyright © 2017. All rights reserved.