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

2009-02-10 Thread Steve Brownlee
> 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 > > > > wrote: > > > Hey all, I'm hoping that someone els

[transfer-dev] Transfer exceptions after upgrade to CF8

2009-02-10 Thread Steve Brownlee
Hey all, I'm hoping that someone else has seen this and fixed it, or at least has a clue as to why it's happening. One of the machines in our staging environment was upgraded to ColdFusion 8 over this last weekend, and when we attempted to access the application yesterday, the following exception

[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() func

[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.  Th

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

2008-10-15 Thread Steve Brownlee
Thanks, Matt. That's actually the first thing I tried before I delved into the thread reading marathon. Transfer didn't like me setting the default value of numeric fields to something non-numeric --- The argument DEFAULTNULLNUMERIC passed to function setDefaultNullN

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

2008-10-15 Thread Steve Brownlee
I've been reading threads about this topic for approximately 3 hours this morning, trying different suggestions that people have posted and I still don't have a solution to what, in my mind, is a simple issue. I've got a nullable NUMBER field in a table named QTY_OVERRIDE. Here's the Transfer def