Eclipse Juno 4.2 + WOLips

2012-06-27 Thread JR Ruggentaler
What¹t the current version of eclipse supported by the WOLips plugin? I see a link for 3.7 here: http://webobjects.mdimension.com/hudson/job/WOLips37Current/lastSuccessfulB uild/artifact/site/. Has anyone gotten WOLips running with eclipse Juno 4.2? JR __

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Mike Schrag
Yeah you'd have to change this to a where fk_id in (select id from origtable limit 100). Possible but might be tricky to plumb that through. Sent from my iPhone On Jun 27, 2012, at 8:56 AM, Chuck Hill wrote: > I recall seeing the same thing. I'd have to look at the SQL again to see if > it i

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Chuck Hill
I recall seeing the same thing. I'd have to look at the SQL again to see if it is possible to migrate the limit a sub-query in the pre-fetches. My first guess is that it would not be trivial. Chuck On 2012-06-27, at 7:10 AM, Kieran Kelleher wrote: > I don't have the answer to that off the t

Re: WOInject: harmed twice by classloader manipulation

2012-06-27 Thread Henrique Prange
Hi Joseph, On 25/06/2012, at 10:57, Joseph Pachod wrote: > > HI Henrique > > I finally had the time to test your changes, launching my app from > another class than the application one. > > It works smoothly, so well done, thanks :) > Good to hear! :) > Only issue left is how to tackle the

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Kieran Kelleher
I don't have the answer to that off the top of my head. Interesting question though. On Jun 27, 2012, at 9:23 AM, Henrique Gomes wrote: > > Also, > > I had trouble some time ago, because a fetch *was* using LIMIT (on Postgres) > but the subsequent fetch of prefetchingRelationshipKeyPaths we

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Henrique Gomes
Also, I had trouble some time ago, because a fetch *was* using LIMIT (on Postgres) but the subsequent fetch of prefetchingRelationshipKeyPaths were NOT. Is that expected behavior? I assume so, the result of LIMITing the fetch might not bring the relation tuples corresponding to the initial L

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Kieran Kelleher
Also, you can verify by checking the SQL that is being sent to the database rather than just guessing that LIMIT is not being applied. It might be a big relationship that is causing OOM exception. Or maybe you have not allocated enough memory to your app. On Jun 27, 2012, at 7:52 AM, Kieran Kel

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Kieran Kelleher
LIMIT is supported by the Wonder MySQL PlugIn since Nov 22, 2011, commit 6c511bb. You would need the MySQLPlugIn in your build path. On Jun 27, 2012, at 3:13 AM, Gennady Kushnir wrote: > I assumed that ( > How can I force LIMIT to SQL statement in MySQL? > > 2012/6/26 Kieran Kelleher : >> It d

Re: fetchLimit don't affect SQL fetching limit?

2012-06-27 Thread Gennady Kushnir
I assumed that ( How can I force LIMIT to SQL statement in MySQL? 2012/6/26 Kieran Kelleher : > It depends on the database plugin you are using. Some plugins take the > fetchSpec fetchLimit and incorporate it into the SQL statement in the > plugin's EOSQLExpression subclass. The default behaviou