WO, Open Source DB, JDBC Driver issue

2005-11-13 Thread xiaowen ren
Hi, All, After I installed My WO5.1 and MySQL on my WINXP, I got some issues with JDBC driver. I know EOModeler just supported by JDK1.1 and WO could be running on JDBC 2.0. and new version MySQL5.0 using JDBC3.0, type IV which is not running on WO5.1. Currently, I am running MySQL 4.0 and JD

Re: 5.3.1 in XCode 2.2

2005-11-13 Thread Lachlan Deck
Hi there, Can you shed any light on what needs to happen now in order for Code Sense to provide completions for included frameworks? This used to work with Xcode 2.0/WO5.2.4. i.e., Do we now need to build and install index templates for everything Java based? I'm happy to file a bug on th

Re: WOSwitchComponent?

2005-11-13 Thread Greg Hulands
The easiest thing to remember with WO programming is not to think "this is a web app, everything is different to a desktop app." Have a variable in the ErrorOccurred.java class, create the accessors (if you so desire), then in whatever page had the error. ErrorOccurred err = (ErrorOccurred)

Re: WOSwitchComponent?

2005-11-13 Thread Ken Anderson
You could do: errorOccurredPage = (ErrorOccurredPage) pageWithName("ErrorOccurred"); errorOccurredPage.setErrrorMessage("The error"); Each component has a java class, and pageWithName is returning an instance of that class. Any method you implement on the component's class can be called whe

Re: WOSwitchComponent?

2005-11-13 Thread Randy Becker
Wow. I've got my app split up into separate .wo s now, and it's great, but I don't know how to pass variables around between them - e.g. how should I handle errors that need to be displayed to the user - I'd like to do something like this: } else { errorMessage = "Something bad happ

Re: 5.3.1 in XCode 2.2

2005-11-13 Thread Amedeo Mantica
Hi Cliff, I think that the EOModeler built in Xcode is great, but is really different from the EOModeler application. The EOModeler application is really buggy and have an old (next) graphic style. EOModeler also have the beautyful "syncronize schema" command that adjust the database rein

RE: WOSwitchComponent?

2005-11-13 Thread apl
Hello Randy; Hi, I'm new to WO, and was wondering what the WO way is to implement a common look to a site. By this I mean having a dynamic, but always included header, footer, etc. I get the feeling that it has something to do with components and maybe with WOSwitchComponent... You may

Re: WOSwitchComponent?

2005-11-13 Thread Chuck Hill
WOComponentContnent is what you want. It can be hard to wrap your mind around it, though. Google should turn up some tutorials. Chuck On Nov 13, 2005, at 10:18 AM, Randy Becker wrote: Hi, I'm new to WO, and was wondering what the WO way is to implement a common look to a site. By this I m

WOSwitchComponent?

2005-11-13 Thread Randy Becker
Hi, I'm new to WO, and was wondering what the WO way is to implement a common look to a site. By this I mean having a dynamic, but always included header, footer, etc. I get the feeling that it has something to do with components and maybe with WOSwitchComponent, but I can't really get anyt