Geert,

you could try writing each statement on a separate line:

RestoreQuery query = manager.getRestoreQuery();
query.joinInner("Publication", Select.ON, "publicationId = Publication.id"); query.joinInner("Articletype", Select.ON, "articletypeId = Articletype.id");
query.joinInner("Author", Select.ON, "authorId = Author.id");
query.where("scheduledate", ">=", current_week_firstday);
manager.restore(query, new DbRowProcessor() { ...

As soon as I add the first joinInner I get the exception.

Pierre


_______________________________________________
Rife-users mailing list
[email protected]
http://www.uwyn.com/mailman/listinfo/rife-users

Reply via email to