From: Gavin_King/Cirrus%<CI...@ci...> - 2002-07-22 14:10:09
|
Just went through the smaller things on my todo list and checked in the following (among other changes) * support for subqueries * JDBC batch execution of collection inserts (if a property is set) * suppress setAccessible() for public members (for locked-down servers) * another performance enhancement for collections So you can now write queries like: from foo in class Foo where foo.count > ( select avg(bar.count) from bar in class Foo ) from foo in class Foo where foo.bar = some ( select bar from bar in class Bar where bar.name=? ) okay, the second query is much more easily expressed w/o the subquery but this is an example..... Gavin. |