ObjectDB ObjectDB

Internal Website Search

81-90 of 200 resultsRefresh
6

SSL Configuration

, and password, which specifies a password that is needed in order to use the file. Usually only the server
6

orderBy(o)

Method javax.persistence.criteria.CriteriaQuery CriteriaQuery<T> orderBy( List<Order> o ) Specify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions, if any. If no ordering expressions are specified, the previous ordering, if any, is simply
6

javax.persistence.SqlResultSetMapping

of the result of a native SQL query. Example: Query q = em.createNativeQuery( "SELECT o.id AS order_id, " + "o.quantity AS order_quantity, " + "o.item AS order_item, " + "i.name AS item_name, " + "FROM Order o, Item i " + "WHERE (order_quantity
6

javax.persistence.ColumnResult

( "SELECT o.id AS order_id, " + "o.quantity AS order_quantity, " + "o.item AS order_item, " + "i.name AS item_name, " + "FROM Order o, Item i " + "WHERE (order_quantity > 25) AND (order_item = i.id)", "OrderResults
6

javax.persistence.FieldResult

.createNativeQuery( "SELECT o.id AS order_id, " + "o.quantity AS order_quantity, " + "o.item AS order_item, " + "FROM Order o, Item i " + "WHERE (order_quantity > 25) AND (order_item = i.id)", "OrderResults"); @SqlResultSetMapping(name="OrderResults
6

orderBy(o)

Method javax.persistence.criteria.CriteriaQuery CriteriaQuery<T> orderBy( Order... o ) Specify the ordering expressions that are used to order the query results. Replaces the previous ordering expressions, if any. If no ordering expressions are specified, the previous ordering, if any, is simply
5

javax.persistence.OneToMany

getOrders() { return orders; } In Order class: @ManyToOne @JoinColumn(name="CUST_ID ... association without using generics // In Customer class: @OneToMany(targetEntity=com.acme.Order.class, cascade=ALL, mappedBy="customer") public Set getOrders() { return orders
4

getOrderList()

Method javax.persistence.criteria.CriteriaQuery List<Order> getOrderList() Return the ordering expressions in order of precedence. Returns empty list if no ordering expressions have been specified. Modifications to the list do not affect the query. Returns: the list of ordering expressions Since: JPA 2.0
0

javax.jdo.JDOEntityManager

for use in the application. In order for the application to construct an instance of the ObjectId class ... that were looked up, in the same order as the oids parameter. Since: JDO 2.0 See Also: getObjectsById ... Returns: the objects that were looked up, in the same order as the oids parameter. Since: JDO 2.0
0

javax.jdo.PersistenceManager

to get an instance of the PersistenceCapable class for use in the application. In order ... - the oids of the objects to return Returns: the objects that were looked up, in the same order as ... the same order as the oids parameter. Since: JDO 2.0 See Also: getObjectsById(Collection,boolean) Object

Getting Started

ObjectDB is very easy to use. Follow the Getting Started Tutorial and the Quick Tour manual chapter and in minutes you may be able to write and run first Java programs against ObjectDB.

Prior knowledge or experience in database programming (SQL, JDBC, ORM, JPA, etc.) is not required, but some background in using the Java language is essential.

Need Help?

  1. Search ObjectDB website
  2. Read the FAQ
  3. Follow the Tutorials
  4. View or post in the forum
  5. Search or file an issue
  6. Contact support