Mar 22
ColdFusion Builder is finally here! You can buy it from here.
I have to say, I'm surprised by pricing. In a good way. At $299, it sure is worth the money. But there is more... You also get a complimentary license for Flash Builder 4 (Standard) with it! Additionally Flash Builder 4 now include pretty much all the features. See here for a version comparison.
Find out a CFBuilder tour near you to explore what CFB can do for you. If you are in Boston area, don't miss this one.
Mar 4
I'm still trying to wrap my head around the relationships in ORM. Yesterday I wanted to delete all the child entities with the parent is delete. No problem, there is an attribute for that. cascade="all-delete-orphan". Well, it wasn't working for me.
It turned out, in my Mach-II app I was using event-bean (by mistake) to prepare the bean and then calling EntityDelete() on it. The entity was getting deleted but the child entities were not getting deleted. No error either. Once I realized my mistake (event-bean), and changed to call-method to load the entity and then call entityDelete() on it everything worked fine.
So, what is the bug? Here is the code equivalent (artist-art example) of my mumbo-jumbo above:
Read more...
Recent Comments