Re: Default mysql TIMESTAMPS not allowed NULL

2020-11-16 Thread Tim W via Webobjects-dev
I >> am using mysql-connector-java-8.0.19.jar. >> >> % java --version >> java 14 2020-03-17 >> Java(TM) SE Runtime Environment (build 14+36-1461) >> Java HotSpot(TM) 64-Bit Server VM (build 14+36-1461, mixed mode, sharing) >> >> My system v

Re: Default mysql TIMESTAMPS not allowed NULL

2020-11-11 Thread Tim W via Webobjects-dev
John: Off the top of my head these may be a couple options: 1. In your EO super class, override willInsert or awakeFromInsertion. The former assumes you’re extending ERXGenericRecord. Not so elegant but you could clobber every instance of a certain attribute type - with some overhead. 2. Possib

Re: anyone else tried Big Sur? - DirectConnect problem

2020-08-25 Thread Tim W via Webobjects-dev
changes things here. Tim > On Aug 25, 2020, at 1:20 PM, Jesse Tayler wrote: > > I use something like that, I’d bet it is still a stale handle somehow. > > If you can’t see a task, then restart? Works on windows... > >> On Aug 25, 2020, at 2:06 PM, Tim W via Webobjects-d

anyone else tried Big Sur? - DirectConnect problem

2020-08-25 Thread Tim W via Webobjects-dev
I know, I probably shouldn’t have done this. But, Everything seems to be going well for dev. Except…..when I try to run any of my apps, I get Aug 25 10:55:26 eTimesheet[N/A] INFO er.extensions.appserver.ERXApplication - WODefaultAdaptor Aug 25 10:55:26 eTimesheet[N/A] INFO er.extensions.app

Re: How often do you bounce your apps?

2020-08-12 Thread Tim W via Webobjects-dev
This is definitely great stuff. Thanks Johann! Schrag once got into the same topic area starting with the magic of WOSwitchComponent. https://lists.apple.com/archives/webobjects-dev/2008/Oct/msg00501.html I also only bounc

Re: given WOLips is being discussed...

2020-07-07 Thread Tim W via Webobjects-dev
Well said, Aaron. WOBuilder was great. That said, I haven’t hated WOLips - I’ve actually really liked some aspects of the workflow. Also, I’ll add secondarily that I find it unlikely that anyone will move to Xcode from Eclipse. Tim UCLA GSE&IS > On Jul 4, 2020, at 8:46 AM, Aaron Rosenzweig via

Re: WO with docker and kubernetes

2020-06-08 Thread Tim W via Webobjects-dev
Hey Aaron: Good thoughts - and its nice to see that Wolfy has some things out there already. I haven’t stuck my toe in this yet with regard to deployment but I have been using the Docker tools locally to do development against - db, httpd. I really love the convenience of these tools. And I’m s

Re: Problem with fresh install....

2020-03-25 Thread Tim W via Webobjects-dev
> On Mar 25, 2020, at 1:07 AM, Markus Ruggiero via Webobjects-dev > wrote: > > > >> On 24 Mar 2020, at 16:16, Louis Demers via Webobjects-dev >> wrote: >> >> Hi, >> >> MacBook Pro died so I have to reinstall the whole toolchain to do some >> mentante on our WO application. I’m almost do

Re: Complimentary App Server Choice

2020-02-21 Thread Tim W via Webobjects-dev
I thought (and much better than it was in the past). We used Mongoose >>> which is like an ORM but as it's a document database it's a bit different. >>> Moreover Mongoose "encapsulates" pure JavaScript objets (like EO compare to >>> pojo) so we had from

Re: Complimentary App Server Choice

2020-02-18 Thread Tim W via Webobjects-dev
Thanks for this Lon. As I begin contemplating a move from WO -> Cayenne, I’m really appreciating hearing what folks are using from a front-end perspective. Wicket looks like a pretty interesting one and from a familiarity perspective may be the best I’ve seen coming from a WO background. Since

Re: SQL Error on fetch

2020-02-10 Thread Tim W via Webobjects-dev
Hi Gino: Were you not specifying the database driver class in Properties before this? Driver class and PlugIn class definitely should always be specified. Tim > On Feb 10, 2020, at 5:37 AM, Gino Pacitti via Webobjects-dev > wrote: > > What seems to have fixed is adding this in my properties

Re: SQL Error on fetch

2020-02-07 Thread Tim W via Webobjects-dev
Hi Gino: I think I might have seen this error when the MySQLPlugin is not in the app classpath? In other words, some SQL that the frameworks are trying to build for a transaction are subsequently not being customized properly for MySQL before being sent to the DB. The errors makes sense in tha