ObjectDB Database Search

1-7 of 7 results

jakarta.persistence.FieldResult

Jakarta Persistence (JPA) Annotation Type jakarta.persistence. FieldResult Implemented Interfaces ... .Order.class, fields = { @ FieldResult (name = "id", column = "order_id"), @ FieldResult (name = "quantity", column = "order_quantity"), @ FieldResult (name = "item", column = "order_item

jakarta.persistence.FieldResult.name

Jakarta Persistence (JPA) Method in jakarta.persistence. FieldResult String name Name of the persistent field or property of the class. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.FieldResult.column

Jakarta Persistence (JPA) Method in jakarta.persistence. FieldResult String column Name of the column in the SELECT clause - i.e., column aliases, if applicable. Since: Jakarta Persistence (JPA) 1.0

jakarta.persistence.ColumnResult

= { @EntityResult( entityClass = com.acme.Order.class, fields = { @ FieldResult (name = "id", column = "order_id"), @ FieldResult (name = "quantity", column = "order_quantity"), @ FieldResult (name = "item", column

jakarta.persistence.SqlResultSetMapping

= { @ FieldResult (name = "id", column = "order_id"), @ FieldResult (name = "quantity", column = "order_quantity"), @ FieldResult (name = "item", column = "order_item") }) }, columns = { @ColumnResult(name

jakarta.persistence.EntityResult

by the SQL query. Default: LockModeType.OPTIMISTIC Since: Jakarta Persistence (JPA) 3.2 FieldResult

jakarta.persistence.EntityResult.fields

Jakarta Persistence (JPA) Method in jakarta.persistence.EntityResult FieldResult [] fields Maps the columns specified in the SELECT list of the query to the properties or fields of the entity class. Default: {} Since: Jakarta Persistence (JPA) 1.0