summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-09-03Logged transaction context is per repository instead of global.Brian S. O'Neill
2007-09-03Fixed transaction leak caused when calling update, if an update trigger ↵Brian S. O'Neill
exists, and no properties were dirty.
2007-09-02Disable short-circuit optimizer until fixed.Brian S. O'Neill
2007-08-31More fixes for adapting SQL dates.Brian S. O'Neill
2007-08-31Automatically apply adapter for java.util.Date.Brian S. O'Neill
2007-08-31Fix handling of date properties declared as "java.util.Date". ↵Brian S. O'Neill
DateTimeAdapter required instead.
2007-08-28Storable toString and toStringKeyOnly methods skip uninitialized properties.Brian S. O'Neill
2007-08-27Fixed indenting.Brian S. O'Neill
2007-08-26Yanked out support for filtering against one-to-many join properties. It ↵Brian S. O'Neill
needs to be redesigned.
2007-08-26Removed vestigial support for wrapping Storables.Brian S. O'Neill
2007-08-26Removed Trigger lob adapting methods.Brian S. O'Neill
2007-08-26Added support for load and query trigger.Brian S. O'Neill
2007-08-23Support parsing date-times with a space separator instead of T.Brian S. O'Neill
2007-08-20Fixed bug in GroupedCursor which discarded last group if it had one element.Brian S. O'Neill
2007-08-19Fixed query descending sort order bug which produced ascending results.Brian S. O'Neill
2007-08-14Removed support for Storable definition to accept Repository in constructor.Brian S. O'Neill
2007-08-13Allow actual primary key definition to be declared as an alternate key.Brian S. O'Neill
2007-08-12Storable methods to access properties by name disallow access to methods ↵Brian S. O'Neill
which declare throwing checked exceptions.
2007-08-11Fixed replication repair bug which threw an IllegalStateException for insert ↵Brian S. O'Neill
repair if only alternate keys were specified.
2007-08-10Support configuring the result set fetch size for queries.Brian S. O'Neill
2007-08-09Yanked out support for fast skipping of JDBC results. JDBC drivers leak ↵Brian S. O'Neill
memory when this option is used.
2007-08-09Handle null value when converting String to Character.Brian S. O'Neill
2007-08-08Merged synthetic alternate key support from pojo branch.Brian S. O'Neill
2007-08-06Support filters as joined and not joined from one-to-many properties.Brian S. O'Neill
2007-08-05Simplified process for generating table aliases.Brian S. O'Neill
2007-08-05Moved static inner classes to separate files.Brian S. O'Neill
2007-08-04Add filtering short-circuit optimization.Brian S. O'Neill
2007-08-04Support query filters against one-to-many join properties.Brian S. O'Neill
2007-08-04Added convenience method, Query.exists()Brian S. O'Neill
2007-08-03Make sure partial comparator does not use full comparator rules.Brian S. O'Neill
2007-08-03Fixed query engine rule which sometimes favored index with incorrect ordering.Brian S. O'Neill
2007-08-01Increased fetch size for column metadata.Brian S. O'Neill
2007-08-01More fixes for bug when generating SQL with nullable primary key properties.Brian S. O'Neill
2007-08-01JDBCRepository allows non-null column to be @Nullable if also @Independent.Brian S. O'Neill
Fixed bug in generating SQL with nullable primary key properties.
2007-07-26Improved support for String and character types.Brian S. O'Neill
2007-07-25Fixed link to source code trunk.Brian S. O'Neill
2007-07-23Allow Storable definition to accept Repository in constructor.Brian S. O'Neill
2007-06-29Fixed IllegalArgumentException with optimized join queries of the form "a.b ↵Brian S. O'Neill
= ? & (a.c = ? | a.d = ?)".
2007-06-14Fixed bug which prevented updating Oracle BLOB of length 2000 to 4000.Brian S. O'Neill
2007-06-11Fix for updating lob property to null.Brian S. O'Neill
2007-06-10Added methods to access Storable properties by name.Brian S. O'Neill
2007-06-07MismatchException includes Storable type name in message.Brian S. O'Neill
2007-06-03Only invoke adapted properties once during encoding.Brian S. O'Neill
2007-06-03Add adapter for supporting primitive arrays.Brian S. O'Neill
2007-06-03Prevent premature uncaching of StorableInfo.Brian S. O'Neill
2007-06-02Improve unsupported array type exception messages.Brian S. O'Neill
2007-05-30Fixed bug which allowed dereferencing properties against type Query in ↵Brian S. O'Neill
filter expressions.
2007-05-24Fix bug which would throw spurious IllegalArgumentException from ↵Brian S. O'Neill
StorableGenerator.
2007-05-23Fixed comment regarding table definition.Brian S. O'Neill
2007-05-21Added ViewCursor class.Brian S. O'Neill