Internal Website Search
1-10 of 10 resultsjavax.persistence.NamedNativeQueries JPA Annotation NamedNativeQueries Target: TYPE Implemented Interfaces: Annotation Specifies multiple native SQL named queries. Query names are scoped to the persistence unit. The NamedNativeQueries annotation can be applied to an entity or mapped superclass. See Also: NamedNativeQuery Since: JPA 1 | |
javax.persistence.NamedNativeQueries.value JPA Annotation Attribute in javax.persistence. NamedNativeQueries NamedNativeQuery [] value default null (Required) Array of NamedNativeQuery annotations. Since: JPA 1.0 | |
javax.persistence.NamedNativeQuery JPA Annotation NamedNativeQuery Target: TYPE Implemented Interfaces: Annotation Specifies a named native SQL query. Query names are scoped to the persistence unit. The NamedNativeQuery annotation can be applied to an entity or mapped superclass. Since: JPA 1.0 Public Annotation Attributes | |
javax.persistence.NamedNativeQuery.resultSetMapping JPA Annotation Attribute in javax.persistence. NamedNativeQuery String resultSetMapping default "" The name of a SqlResultSetMapping , as defined in metadata. Since: JPA 1.0 | |
javax.persistence.NamedNativeQuery.resultClass JPA Annotation Attribute in javax.persistence. NamedNativeQuery Class resultClass default void.class The class of the result. Since: JPA 1.0 | |
javax.persistence.NamedNativeQuery.hints JPA Annotation Attribute in javax.persistence. NamedNativeQuery QueryHint [] hints default {} Query properties and hints. (May include vendor-specific query hints.) Since: JPA 1.0 | |
javax.persistence.NamedNativeQuery.query JPA Annotation Attribute in javax.persistence. NamedNativeQuery String query default null The SQL query string. Since: JPA 1.0 | |
javax.persistence.NamedNativeQuery.name JPA Annotation Attribute in javax.persistence. NamedNativeQuery String name default null The name used to refer to the query with the EntityManager methods that create query objects. Since: JPA 1.0 | |
javax.persistence.QueryHint JPA Annotation QueryHint Implemented Interfaces: Annotation Used to supply a query property or hint to the NamedQuery or NamedNativeQuery annotation. Vendor-specific hints that are not recognized by a provider are ignored. Since: JPA 1.0 Public Annotation Attributes String name default null Name | |
javax.persistence.SqlResultSetMapping={ @ColumnResult(name="item_name")} ) See Also: Query StoredProcedureQuery NamedNativeQuery |