Index: DatabaseAdapter.java =================================================================== RCS file: /cvsroot/jpox/JPOX/Core/src/java/org/jpox/store/rdbms/adapter/DatabaseAdapter.java,v retrieving revision 1.57 diff -u -r1.57 DatabaseAdapter.java --- DatabaseAdapter.java 14 Aug 2005 09:26:12 -0000 1.57 +++ DatabaseAdapter.java 19 Aug 2005 09:05:42 -0000 @@ -1129,6 +1129,23 @@ } /** + * Determines whether the {@link #getSelectWithLockOption()} is to be placed right + * before the FROM clause, or at the end of the statement + * @return + */ + public boolean getPlaceWithOptionAfterFromClause() { + return false; + } + + /** + * Determines whether lock option has to be placed within JOIN clauses as well. + * @return + */ + public boolean getPlaceWithOptionWithinJoinClauses() { + return true; + } + + /** * The function to creates a unique value of type uniqueidentifier. * @return The function. e.g. "SELECT NEWID()" **/