Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Alexander Spohr
Am 05.10.2013 um 23:43 schrieb Raymond NANEON rnan...@me.com: I want to use UNION in two EOFetch but I don't know how to do it. Not sure what you mean by using union. I can only guess :) Did you try EOFetchSpecification.setUsesDistinct(true)? atze

LongResponsePage does not return from cancelPage method

2013-10-06 Thread Shelley Eitzen
Hi All, I need help with a LongResponsePage I have a component LongResponseStatusPage which displays a progress indicator and message. The LongResponseStatusPage extends LongResponsePage and implements methods for refreshPage, pageForResult, cancelPage, and performAction. When one

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Stavros Panidis
Hi Raymond, like below… EOFetchSpecification fsSpecial = new EOFetchSpecification(Designs, specialQualifier, null); tempArray = ecQuery.objectsWithFetchSpecification(fsSpecial); NSSet specialSet = new NSSet(tempArray); if (intersection) resultsSet =

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Raymond NANEON
Hi Alexander, by UNION I mean UNION between two SQL. SELECT a, b, c FROM A, B … UNION SELECT a, b, c FROM A. Le 6 oct. 2013 à 12:15, Alexander Spohr a...@freeport.de a écrit : Am 05.10.2013 um 23:43 schrieb Raymond NANEON rnan...@me.com: I want to use UNION in two EOFetch but I don't know

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Raymond NANEON
Hi Stravos, Thanks for example but where currentResultsSet come from? from your 1st eofetchspec? example : EOFetchSpecification fs1 = new EOFetchSpecification(ENTITY1, specQualifier1,null); EOFetchSpecification fs2 = new EOFetchSpecification(ENTITY1, specQualifier2,null); specQualifier1 join

Re: WOInstaller.jar throws Exception in thread main java.io.IOException: Cannot run program /bin/ln

2013-10-06 Thread Thomas Peters
tpeterss-macbook-pro-15:WOLips thomasgpeters$ ls -l /bin/ln -rwxr-xr-x 1 root wheel 14976 Oct 19 2012 /bin/ln On Oct 4, 2013, at 11:28 PM, Chuck Hill ch...@global-village.net wrote: What are the permissions on ln? These are mine: moosejaw:~ chuck$ ls -al /bin/ln -rwxr-xr-x 2 root wheel

Re: WOInstaller.jar throws Exception in thread main java.io.IOException: Cannot run program /bin/ln

2013-10-06 Thread Bastian Triller
The hard link count of your /bin/ln is 1. It should be 2, since /bin/link and /bin/ln point to the same file (at least on 10.8). Do you have /bin/link? On 6 Oct 2013 18:25, Thomas Peters thomasg_pet...@msn.com wrote: tpeterss-macbook-pro-15:WOLips thomasgpeters$ ls -l /bin/ln -rwxr-xr-x 1 root

error Trying to install mod_WebObject.so into xampp on ubuntu linux

2013-10-06 Thread Thomas Peters
Hi all, I am getting back into WO and trying to install a WO deployment into my Ubuntu 13.04 desktop. I am using wiki.wocommunity.org Deploying on Linux article. Trying to to install the apache2 module for WebObjects. It appears that this error has something to do with the xampp apsx

Re: WOInstaller.jar throws Exception in thread main java.io.IOException: Cannot run program /bin/ln

2013-10-06 Thread Thomas Peters
Yes, I have /bin/link it's a symbolic link to: tpeterss-macbook-pro-15:WOLips thomasgpeters$ which link /bin/link tpeterss-macbook-pro-15:WOLips thomasgpeters$ link usage: ln [-Ffhinsv] source_file [target_file] ln [-Ffhinsv] source_file ... target_dir link source_file

Re: WOInstaller.jar throws Exception in thread main java.io.IOException: Cannot run program /bin/ln

2013-10-06 Thread Thomas Peters
also checked the permissions for link tpeterss-macbook-pro-15:WOLips thomasgpeters$ ls -l /bin/link -rwxr-xr-x 1 root wheel 14976 Oct 19 2012 /bin/link On Oct 6, 2013, at 1:20 PM, Thomas Peters thomasg_pet...@msn.com wrote: Yes, I have /bin/link it's a symbolic link to:

Re: Changing from horizontal to single table inheritance

2013-10-06 Thread Ramsey Gurley
You need a schema-less approach if you need to create these things at runtime. Relational databases really aren't such a good fit in these cases. You can shoe horn something into a RDBMS with EAV or datablobs, but it won't scale well. If you're using Postgres 9.2.x or better, there is built in

Re: error Trying to install mod_WebObject.so into xampp on ubuntu linux

2013-10-06 Thread Thomas Peters
I tried to install the module mod_WebObjects.so into the standard web server built into Ubuntu: thomas@ubuntu-Dell-DM061:/usr/sbin$ sudo apache2ctl start apache2: Syntax error on line 239 of /etc/apache2/apache2.conf: Syntax error on line 1 of /etc/apache2/mods-enabled/WebObjects.load: Cannot

Re: error Trying to install mod_WebObject.so into xampp on ubuntu linux

2013-10-06 Thread Thomas Peters
here I see the symbol: ap_snprintf is undefined. so, this is a different error. I would like to try and solve the issue when using the apache instance under /opt/lampp but have also tried to use the base version of apache2 on my ubuntu system. Different error, but still preventing me from

Re: error Trying to install mod_WebObject.so into xampp on ubuntu linux

2013-10-06 Thread Pascal Robert
http://wiki.wocommunity.org/display/documentation/Installing+a+deployment+environment+on+Debian+or+Ubuntu?src=search here I see the symbol: ap_snprintf is undefined. so, this is a different error. I would like to try and solve the issue when using the apache instance under /opt/lampp but

Re: Changing from horizontal to single table inheritance

2013-10-06 Thread Kieran Kelleher
Might be worth checking a Graph Database such as Neo4j as a possible solution for your domain model requirements. The book: http://amzn.com/1449356265 Free PDF Version of the book: http://graphdatabases.com On Oct 6, 2013, at 2:08 PM, Ramsey Gurley rgur...@smartpractice.com wrote: You need

Re: Using UNION in EOFetchSpecification

2013-10-06 Thread Stavros Panidis
Hi Raymond, yes, this is what I mean. set1 = new set for fs1 set2 = new set for fs2 set1 = set1.setbyunioning(set2) Stavros On 6 Οκτ 2013, at 6:27 μ.μ., Raymond NANEON rnan...@me.com wrote: Hi Stravos, Thanks for example but where currentResultsSet come from? from your 1st