But for some reason, the SQL generated by the EOModeler is
different for the same eomodeld file. e.g. This is what's created
for one of my EOs on my development machine where things work:
CREATE TABLE "t_entry" (
"c_games" INTEGER NOT NULL,
"c_groups" INTEGER NOT NULL,
"id" INTEGER NOT NULL,
"c_last_save" TIMESTAMP NOT NULL,
"c_name" VARCHAR(50) NOT NULL,
"c_password" VARCHAR(255) NOT NULL,
"c_picks_confirmed" VARCHAR(5) NOT NULL,
"poolID" INTEGER NOT NULL,
"real" VARCHAR(5) NOT NULL,
"spare_bool" VARCHAR(5) NOT NULL,
"spare_int" INTEGER NOT NULL,
"spare_str" VARCHAR(255) NOT NULL,
"c_still_alive_first" VARCHAR(5) NOT NULL,
"c_still_alive_second" VARCHAR(5) NOT NULL,
"c_still_alive_third" VARCHAR(5) NOT NULL,
"c_tie_breaker" INTEGER NOT NULL,
"userID" INTEGER NOT NULL
);
While this is generated on my "deployment" machine and doesn't work
when run:
CREATE TABLE t_entry (
c_games INTEGER NOT NULL,
c_groups INTEGER NOT NULL,
id INTEGER NOT NULL,
c_last_save TIMESTAMP NOT NULL,
c_name VARCHAR(50) NOT NULL,
c_password VARCHAR(255) NOT NULL,
c_picks_confirmed VARCHAR(5) NOT NULL,
poolID INTEGER NOT NULL,
real VARCHAR(5) NOT NULL,
spare_bool VARCHAR(5) NOT NULL,
spare_int INTEGER NOT NULL,
spare_str VARCHAR(255) NOT NULL,
c_still_alive_first VARCHAR(5) NOT NULL,
c_still_alive_second VARCHAR(5) NOT NULL,
c_still_alive_third VARCHAR(5) NOT NULL,
c_tie_breaker INTEGER NOT NULL,
userID INTEGER NOT NULL);
Any ideas on specifically what might cause such a discrepancy?
Thanks,
Jeff
On Nov 9, 2008, at 7:41 AM, Jeff Schmitz wrote:
On Nov 9, 2008, at 7:25 AM, Mike Schrag wrote:
since I sometimes I may not have my development machine
available and need to use my deployment server for development.
yikes ...
I should have specified, not while it's actually in the act of
deploying.
Do you think the differences in what's generated is due to some
kind of library version difference somewhere?
You either have different versions of WO or different versions of
the FrontBasePlugIn.
I'll double check the frontbase plugin, but I also tried
downloading the "all in one" Eclipse + WOLips installer, which
includes the frontbase plugin, and got the same results. Also
both machines have Leopard installed (one client, one server),
don't they both automatically install the same version of
webobjects?
From Apple's kb:
Installing the WebObjects 5.4.3 update for Mac OS X 10.5 Server
This update is available through the Software Update feature of
Mac OS X Server. It is part of the Mac OS X 10.5.5 Update and
cannot be obtained as a separate download.
System requirements
• Mac OS X Server 10.5 or later
• Java 5
If you are updating a WebObjects 5.4 system or performing a new
installation of Mac OS X 10.5 Server:
• Install Mac OS X Server version 10.5
• Run Software update to update to Mac OS X Server version 10.5.5
or later
Jeff
ms
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden