BATCH-762: changed ExecutionContext storage strategy to use JSON for serialization in a single String/CLOB

This commit is contained in:
trisberg
2008-09-08 13:21:25 +00:00
parent 2b470683f9
commit d272105479
27 changed files with 466 additions and 350 deletions

View File

@@ -62,7 +62,7 @@ public class MySqlPagingQueryProvider extends AbstractSqlPagingQueryProvider {
sql.append(" FROM ").append(getFromClause());
sql.append(getWhereClause() == null ? "" : " WHERE " + getWhereClause());
sql.append(" ORDER BY ").append(getSortKey()).append(" ASC");
sql.append(" LIMIT ").append(offset).append(" 1");
sql.append(" LIMIT ").append(offset).append(", 1");
return sql.toString();
}