[transfer-dev] Re: Transfer exceptions after upgrade to CF8

2009-02-10 Thread Steve Brownlee
with onMissingMethod that only works with CF 8.0.1. I suggest checking your version of CF, and upgrading to 8.0.1 if you're currently on 8.0. Bob On Tue, Feb 10, 2009 at 4:01 PM, Steve Brownlee steven.brown...@gmail.com wrote: Hey all, I'm hoping that someone else has seen this and fixed

[transfer-dev] Disabling the IDGenerator

2009-01-08 Thread Steve Brownlee
Is it easily possible to disable the sequence generation aspect of Transfer? I'm on a project where the DB account used to connect to our Oracle database does not have permissions to INSERT, UPDATE or CREATE. It appears that Transfer automatically calls the IDGenerator.createSequenceTable()

[transfer-dev] Re: Once and for all - NULLABLE fields

2008-10-15 Thread Steve Brownlee
I hate hacks, but I've hacked my way around this issue. I simply set the default value to -1 and then I made an override method to check if the value is = 0. If not, I return an empty string. On Oct 15, 1:28 pm, Steve Brownlee [EMAIL PROTECTED] wrote: Thanks, Matt.  That's actually the first