Re: Objective Cloud Interview

2013-01-26 Thread David Avendasora
Hi Saul, I'm surprised that nobody has recommended that you speak to Chuck Hill (or if they did, I didn't see it). Wy back in 2005, he did an interview with Java Posse (https://itunes.apple.com/us/podcast/java-posse-005-interview-chuck/id270165303?i=87505171mt=2). It's quite out of date

Re: Using Jenkins to Build a WOApp

2013-01-26 Thread David Avendasora
Thanks Pascal! On Jan 24, 2013, at 9:11 PM, Pascal Robert prob...@macti.ca wrote: The problem is probably that the scripts inside WOJenkins fetches woprojet.jar (who contains the Ant tasks needed to build a WO project) and WOInstaller.jar from webobjects.mdimension.com, and Jenkins on that

Re: problem of accents on FR data

2013-01-26 Thread Stéphan Mertz
Hello Raymond, I don't see why the override is not used in your code. Did you put a breakpoint in the override method ? Le 24 janv. 2013 à 11:06, Raymond NANEON rnan...@me.com a écrit : My package is etudiants.utt.fr.util.IVOracleExpression and I the this

Re: problem of accents on FR data

2013-01-26 Thread Raymond NANEON
Hello Stéphan, I put breakpoint in my class but the override method never read. Did I forget something? I go to upgrade to latest wonder (6) on monday and retry Envoyé de mon iPhone Le 26 janv. 2013 à 11:02, Stéphan Mertz s.me...@improve.fr a écrit : Hello Raymond, I don't see why the

Re: problem of accents on FR data

2013-01-26 Thread Stéphan Mertz
Is your class in the application classpath ? To be sure, could you change the init call with : ERXJDBCAdaptor.setExpressionClassName(IVOracleExpression.class.getName(), ERXJDBCAdaptor.class.getName()); Le 26 janv. 2013 à 16:07, Raymond NANEON rnan...@me.com a écrit : Hello Stéphan, I put

Re: Objective Cloud Interview

2013-01-26 Thread Saul Mora
If he's not on the list, I'd appreciate someone passing along my email address and this thread. Thanks! Saul Mora @casademora On Jan 26, 2013, at 1:08 AM, David Avendasora webobje...@avendasora.com wrote: Hi Saul, I'm surprised that nobody has recommended that you speak to Chuck Hill (or

Re: Objective Cloud Interview

2013-01-26 Thread Saul Mora
Apologies, Chuck had previously responded, Thanks Sent from my iPad On Jan 26, 2013, at 1:08 AM, David Avendasora webobje...@avendasora.com wrote: Hi Saul, I'm surprised that nobody has recommended that you speak to Chuck Hill (or if they did, I didn't see it). Wy back in 2005, he did an

vertical inheritance question

2013-01-26 Thread James Cicenia
I have setup a typical rertical inheritance ParentClass ChildClass1 ChildClass2 If I fetch on all parent classes...say.. ParentClass.fetchAll I actually get twice as many than I should and it magically converts the class to a type of ChildClass1 ? I look at the database and I have one record

more on the Vertical Inheritance, the sql

2013-01-26 Thread James Cicenia
OK - When I just the SQL... It actually does three selects and not one. It does a select for each of the children entities and then for the parent class. Why? I am just asking or fetching the parentClass. Why does it want to also search by Qualifier of the subclasses? Thanks James

I meant Single Table Map Inheritence

2013-01-26 Thread James Cicenia
Darn this google mail. My mistake on the label ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription:

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread Johnny Miller
Are you using a restricting qualifier? On Jan 26, 2013, at 10:36 AM, James Cicenia ja...@jimijon.com wrote: OK - When I just the SQL... It actually does three selects and not one. It does a select for each of the children entities and then for the parent class. Why? I am just

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread Ken Anderson
James, It would help to provide the definitions of the entities. It all depends on how you setup the restricting qualifiers and primary keys. Do all 3 have the same associated table? Ken On Jan 26, 2013, at 3:36 PM, James Cicenia ja...@jimijon.com wrote: OK - When I just the SQL...

Re: problem of accents on FR data

2013-01-26 Thread Raymond NANEON
Ok Stéphan, I go to change the init call expression. I tell you on monday at my office. Thanks Envoyé de mon iPad Le 26 janv. 2013 à 17:03, Stéphan Mertz s.me...@improve.fr a écrit : Is your class in the application classpath ? To be sure, could you change the init call with :

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread Ramsey Gurley
On Jan 26, 2013, at 1:36 PM, James Cicenia wrote: OK - When I just the SQL... It actually does three selects and not one. It does a select for each of the children entities and then for the parent class. Why? I am just asking or fetching the parentClass. Why does it want to also

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread James Cicenia
I am both in the objects init and in the Qualifier in EOModeler. On Jan 26, 2013, at 3:45 PM, Johnny Miller jlmil...@kahalawai.com wrote: Are you using a restricting qualifier? On Jan 26, 2013, at 10:36 AM, James Cicenia ja...@jimijon.com wrote: OK - When I just the SQL... It

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread James Cicenia
OK - This is the SQL that is generated for NSArrayNotification entries = Notification.fetchAllNotifications(session().defaultEditingContext()); Notice that is first searches all the subclasses then the final query with no osType qualifier. Doesn't make sense to me. DEBUG

Re: more on the Single Table Inheritance, the sql

2013-01-26 Thread James Cicenia
Is that a default? I need to read about that as this doesn't make sense to me. On Jan 26, 2013, at 5:56 PM, Ramsey Gurley ramseygur...@gmail.com wrote: On Jan 26, 2013, at 1:36 PM, James Cicenia wrote: OK - When I just the SQL... It actually does three selects and not one. It does

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread Chuck Hill
Sounds like the root entity is not abstract or does not have a restricting qualifier. On 2013-01-26, at 4:43 PM, James Cicenia wrote: OK - This is the SQL that is generated for NSArrayNotification entries = Notification.fetchAllNotifications(session().defaultEditingContext());

Re: more on the Vertical Inheritance, the sql

2013-01-26 Thread James Cicenia
Hmmm, Why would I want it abstract? Anyway, I put a qualifier in the root entity osType = 'All' then the sql that was generated was: DEBUG (ERXNSLogLog4jBridge.java:46) - evaluateExpression: com.webobjects.jdbcadaptor._MySQLPlugIn$MySQLExpression: SELECT RTRIM(t0.alertString),