[transfer-dev] cascade delete

2009-08-10 Thread Dan Vega
I have an ecommerce application (demo) that has products. Each of those products can have reviews attached to them. Below is my transfer configuration for products. The review table holds a foreign key for the product that the review is for. If i call geReviewArray for a product it works great

[transfer-dev] Re: cascade delete

2009-08-10 Thread Dan Vega
- BE WARNED. Would you like to actually explain what the actual 'problem' is please ;o) Mark On Tue, Aug 11, 2009 at 6:58 AM, Dan Vega danv...@gmail.com wrote: I have an ecommerce application (demo) that has products. Each of those products can have reviews attached to them. Below is my

[transfer-dev] Re: Column Specified 2x

2009-08-04 Thread Dan Vega
it as a property. Paul On Mon, Aug 3, 2009 at 9:30 PM, Dan Vega danv...@gmail.com wrote: I have probably screwed something up here but I can not figure out why i am getting this error. I have a product and each product can have many reviews. I have  onetomany relationship defined like

[transfer-dev] Column Specified 2x

2009-08-03 Thread Dan Vega
I have probably screwed something up here but I can not figure out why i am getting this error. I have a product and each product can have many reviews. I have onetomany relationship defined like this. ?xml version=1.0 encoding=UTF-8? transfer

[transfer-dev] Support for other CFML engines

2009-07-17 Thread Dan Vega
I am working on my basic introduction to transfer presentation for CFUnited and had a quick question. I know that Transfer is officially supported on ColdFusion 7+ but I see some topics in the forums about Railo + OpenBd. Are either of these engines supported or will they work?

[transfer-dev] Re: Many to Many List

2009-07-06 Thread Dan Vega
What do you mean about the (+)? This is the generated SQL that Transfer created and I am using Oracle. --~--~-~--~~~---~--~~ Before posting questions to the group please read: http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer

[transfer-dev] Re: Something is getting cached

2009-06-30 Thread Dan Vega
wrong here...just not sure what. On Jun 27, 9:51 pm, Mark Mandel mark.man...@gmail.com wrote: Dan, Can you break it down into a single index.cfm file, so it's a reproducible test case? Mark On Sat, Jun 27, 2009 at 2:47 AM, Dan Vega danv...@gmail.com wrote: Loaded via coldspring

[transfer-dev] Re: Something is getting cached

2009-06-30 Thread Dan Vega
So I got some time to finally look at this and I think I have found the issue. When I save using the method I created in my abstractDecorator I am having the issue. cfset userTO = application.userService.get(form.userId) !--- populate the user bean with our form props ---

[transfer-dev] Re: Something is getting cached

2009-06-30 Thread Dan Vega
it. Erk... Glad you worked it out. Mark On Wed, Jul 1, 2009 at 6:13 AM, Dan Vega danv...@gmail.com wrote: So I got some time to finally look at this and I think I have found the issue. When I save using the method I created in my abstractDecorator I am having the issue

[transfer-dev] Re: Something is getting cached

2009-06-26 Thread Dan Vega
Loaded via coldspring cffunction name=onApplicationStart returnType=boolean output=false cfset coldspringConfig = /quickconnects/config/coldspring.xml cfset application.coldspring = createObject('component',

[transfer-dev] Re: Injecting beans into decorators

2009-06-25 Thread Dan Vega
/ /constructor-arg property name=beanInjector ref bean=beanInjector / /property /bean On Jun 4, 2:29 pm, Cedric Villat ced...@cornfeed.com wrote: Dan, what exactly was the fix? Cedric On Thu, Jun 4, 2009 at 7:27 AM, Dan Vega

[transfer-dev] Re: Something is getting cached

2009-06-25 Thread Dan Vega
Ok so I just don't understand the object cache. I will have to read up on it. If I create a new object and then save that object to the database everything works great. If I then try to get that object again I am working with a tranfser object instead of my decorator. If I were to re initialize

[transfer-dev] Injecting beans into decorators

2009-06-04 Thread Dan Vega
I am sorry if this is a dumb question but I am just getting started with writing my own decorators. I have a Product decorator that extends my base decorator like so. cfcomponent displayname=Product Transfer Decorator output=false extends=AbstractTransferDecorator cffunction

[transfer-dev] Re: Injecting beans into decorators

2009-06-04 Thread Dan Vega
Of Dan Vega Sent: 04 June 2009 14:50 To: transfer-dev Subject: [transfer-dev] Injecting beans into decorators I am sorry if this is a dumb question but I am just getting started with writing my own decorators. I have a Product decorator that extends my base decorator like so. cfcomponent

[transfer-dev] Re: Injecting beans into decorators

2009-06-04 Thread Dan Vega
Of Dan Vega Sent: 04 June 2009 14:50 To: transfer-dev Subject: [transfer-dev] Injecting beans into decorators I am sorry if this is a dumb question but I am just getting started with writing my own decorators. I have a Product decorator that extends my base decorator like so. cfcomponent

[transfer-dev] Re: Injecting beans into decorators

2009-06-04 Thread Dan Vega
NM..RTFM DAN...thanks! haha On Jun 4, 10:23 am, Dan Vega danv...@gmail.com wrote: Thanks for the link. I tried going through the examples and from what I understand it will automatically inject any beans with maching setters. I added this to my coldspring config         bean id

[transfer-dev] Oracle 8i

2008-12-01 Thread Dan Vega
Is this still unsupported? I have a database that is 8i and didnt realize it was not supported until I was half way through a project. Everything works fine until you get into doing JOINS. Oracle 8i has some funny syntax to create joins and changed over in 9. If its not supported has anyone

[transfer-dev] Re: Oracle 8i

2008-12-01 Thread Dan Vega
about the (+) syntax? I've refactored that syntax out to use the Join Keywords in Oracle 9 10, though I can't remember if that is valid for 8i. I'm just asking for my own benefit... DW On Mon, Dec 1, 2008 at 11:14 AM, Dan Vega [EMAIL PROTECTED] wrote: Is this still unsupported? I have