ObjectDB Database Search
1-11 of 11 resultsAnnotationAttrRef jakarta.persistence.EntityResult.discriminatorColumn JPA Annotation Attribute in jakarta.persistence. EntityResult String discriminatorColumn default "" Specifies the column name (or alias) of the column in the SELECT list that is used to determine the type of the entity instance. Since: JPA 1.0 | |
AnnotationAttrRef jakarta.persistence.EntityResult.fields JPA Annotation Attribute in jakarta.persistence. EntityResult FieldResult [] fields default {} Maps the columns specified in the SELECT list of the query to the properties or fields of the entity class. Since: JPA 1.0 | |
AnnotationAttrRef jakarta.persistence.EntityResult.entityClass JPA Annotation Attribute in jakarta.persistence. EntityResult Class entityClass default null The class of the result. Since: JPA 1.0 | |
AnnotationRef jakarta.persistence.EntityResult JPA Annotation EntityResult Implemented Interfaces: Annotation Used in conjunction with the SqlResultSetMapping or NamedNativeQuery annotation to map the SELECT clause of a SQL query to an entity result. If this annotation is used, the SQL statement should select all the columns that are mapped | |
AnnotationAttrRef jakarta.persistence.EntityResult.lockMode JPA Annotation Attribute in jakarta.persistence. EntityResult LockModeType lockMode default LockModeType.OPTIMISTIC The lock mode obtained by the SQL query. Since: JPA 3.2 | |
AnnotationRef jakarta.persistence.NamedNativeQuery;, entities={ @ EntityResult (entityClass=com.acme.Order.class), @ EntityResult (entityClass=com.acme.Item ... ;, resultSetMapping = "OrderItemResults"); entities={ @ EntityResult (entityClass=com.acme.Order.class), @ EntityResult (entityClass=com.acme.Item.class) } ) The NamedNativeQuery annotation can be applied | |
AnnotationRef jakarta.persistence.FieldResult with the EntityResult annotation to map columns specified in the SELECT list of a SQL query to the properties or ... = "OrderResults", entities = { @ EntityResult ( entityClass = com.acme.Order.class, fields = { See Also: EntityResult SqlResultSetMapping Since: JPA 1.0 Public Annotation Attributes String column default null | |
AnnotationRef jakarta.persistence.SqlResultSetMapping = { @ EntityResult ( entityClass = com.acme.Order.class, fields = { See Also: Query ... EntityResult [] entities default {} Specifies the result set mapping to entities. Since: JPA 1.0 String | |
AnnotationRef jakarta.persistence.ColumnResult"); @SqlResultSetMapping( name = "OrderResults", entities = { @ EntityResult ( entityClass = com.acme.Order | |
AnnotationAttrRef jakarta.persistence.NamedNativeQuery.entities JPA Annotation Attribute in jakarta.persistence.NamedNativeQuery EntityResult [] entities default {} Specifies the result set mapping to entities. May not be used in combination with resultSetMapping . Since: JPA 3.2 | |
AnnotationAttrRef jakarta.persistence.SqlResultSetMapping.entities JPA Annotation Attribute in jakarta.persistence.SqlResultSetMapping EntityResult [] entities default {} Specifies the result set mapping to entities. Since: JPA 1.0 |