Re: [Reactor for CF] regenerating dictionary xml files

2006-07-24 Thread Beth Bowden
PROTECTED] [mailto: [EMAIL PROTECTED]] On Behalf Of Beth Bowden Sent: Monday, July 24, 2006 12:52 PM To: reactor@doughughes.net Subject: [Reactor for CF] regenerating dictionary xml files When I add or change a column into a table, I typically delete the corresponding files in reactor/project

Re: [Reactor for CF] DAO generation and Oracle 10

2006-07-25 Thread Beth Bowden
Van,In your categoryMetadata.cfc, is there a line similiar to: cfset variables.metadata.fields[1][primaryKey] = true /?Thanks, Beth On 7/25/06, Van Daele Wouter (DBB) [EMAIL PROTECTED] wrote: (Can't seem to get logged in to the Reactor Trac site, so I'm logging it here...) Doug,

Re: [Reactor for CF] DAO generation and Oracle 10

2006-07-25 Thread Beth Bowden
Wouter,That's it exactly.BethOn 7/25/06, Van Daele Wouter (DBB) [EMAIL PROTECTED] wrote: Beth, Nope - all linesfor the primaryKey attribute say false. And yet I have a constraint of type UNIQUE on the CATEGORYID column... I suppose that type should be PRIMARY, and not UNIQUE ? Wouter

Re: [Reactor for CF] DAO generation and Oracle 10

2006-07-26 Thread Beth Bowden
You are safe. The latest revision incorporates both changes.On 7/25/06, Van Daele Wouter (DBB) [EMAIL PROTECTED] wrote: I confess that I haven't looked at any specific patches - having just returned from a two-week holiday I downloaded revision 330 and hoped everything would work. Should

Re: [Reactor for CF] Schemas - MS SQL 2005

2006-08-24 Thread Beth Bowden
We normally associate a user with a particular schema. So if we want a different schema, we set the username/password to the DSN appropriately. If I understand right, this won't work for you because you need to across more than one schema. Is that correct? Thanks, BethOn 24 Aug 2006 01:21:19

[Reactor for CF] adding schema names

2006-08-30 Thread Beth Bowden
I've heard two approaches to adding schema names for tables in the reactor config files. The first is to add an owner which would look like: object name=mytable owner=tigger / The second is to allow fully qualified table names which would look like: object name=tigger.mytable / I tend towards a

[Reactor for CF] reactor change that may impact your code

2006-09-17 Thread Beth Bowden
Folks,To fix the problems that cblackwell pointed out in http://trac.reactorframework.com/reactor/ticket/76, the copy, isequal and configure methods were renamed to _copy, _isequal, and _configure in the \reactor\base\*.cfc files. If your code calls any of these methods manually, please change the

Re: [Reactor for CF] oracle is now handles case-sensitivity object names

2006-09-17 Thread Beth Bowden
Oracle Users, Reactor now matches your objects to the actual tables in Oracle regardless of case. For example, Reactor would match this: object name=SubscriptionTable/ to the SUBSCRIPTIONTABLE f a table named SubscriptionTable doesn't exist. You will need to delete the files under your

Re: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Beth Bowden
Joshua,It doesn't look like we were able to check the fix out in cf6.1. Here's the code in iterator.cfc: cfif ListFirst(Server.ColdFusion.ProductVersion) GTE 7line 463cfset QueryAddColumn( variables.query, reactorRowDeleted, Bit, deletedArray) / cfelse!--- hopefully this works in MX

Re: [Reactor for CF] Perplexing Bug - Reactor / MG:U on ColdFusion 6.1 (Windows)

2006-09-22 Thread Beth Bowden
Joshua,That's puzzling. Perhaps, a leading space? Can you change line 462 to: cfif ListFirst( trim(Server.ColdFusion.ProductVersion) ) GTE 7Thanks,BethOn 9/22/06, Joshua Scott [EMAIL PROTECTED] wrote: That value returns: 6,1,0,hf45343_611 - JS

Re: [Reactor for CF] RE: [Reactor For CF] computed columns

2006-10-05 Thread Beth Bowden
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Beth Bowden Sent: 05 October 2006 14:56 To: reactor@doughughes.net Subject: Re: [Reactor for CF] RE: [Reactor For CF] computed columns Would it make sense for Reactor to ignore computed columns? On 10/5/06, Gareth Cole