Workbook 7 deltaExercise 9.1: Query and EJB QL BasicsTo get rid of the warnings for already existing tables, the property toplink.ddl-generation in the persistence.xml file can be commented out on subsequent runs. By setting the property toplink.logging.level to FINE you can see the SQL statements executed for queries. The IN Operator and INNER JOIN / Using DISTINCTFor some reason the toplink translation of EJB QL to SQL always inserts the DISTINCT. The WHERE Clause and IS EMPTYI do not know why the names are printed in the example run in the book, but I can't find the reason in code. The WHERE Clause and MEMBER OFApparently toplink does not support the query on full entity object as parameter (It does as partial result.), futhermore the query that should have returned some value originally did not, this appears to be a toplink bug, the comparison of the parameter is done against crs instead of against cust. When the order of crs and cust is changed, or a WHERE 0 = 0 clause is introduced before the cust.id = :c the query works. The NOT MEMBER OF query delivers the same SQL (and result) as the MEMBER OF QUERY, this appears to be very wrong. GROUP BY and HAVINGAlso suffers from the limitation on object level queries (replaced COUNT (res) by COUNT (res.id)) The Result object must accept Long / Double wrappers instead of primitive types. In case of the HAVING the toplink requires that the HAVING is a search condition over the grouping items or aggregate functions that apply to the grouping item. ( In this case the reservations are not below the name. Bulk UpdatesNothing special. Exercise 9.2: Native SQL QueriesBy setting the property toplink.logging.level to FINE you can see the SQL statements executed for queries. Running native SQL is different for different databases, also the issues encountered and the results returned are different. For the platform used in the book the columns maintain case when the SQL query returns, for the oracle database the columns get translated to upper case in the result set, which leads to casing issues if no all upper case was used in explicit column name definitions. Furthermore the count returned in example part 3 is a BigDecimal instead of and Integer. Using newer Toplink EssentialsWhen a newer version of Toplink Essentials is used the object level query works. The WHERE clause need not be preceded with 0 = 0 and no DISTINCT is inserted always. (Verified on Toplink Essentials 2.0 b57). The NOT MEMBER OF however yields a NullPointerException. To facilitate troubleshooting, here an individual download of the exercise. ex09_1.zipThis bug has already been reported as bug number Bug 3460. Back to the index Further to Workbook 8 UUIDs and information about UUIDs If you have improvements, contact information on the homepage of this host. The uptime of this host |