A couple of weeks ago I announced that my book eBook "ColdFusion ORM – A guide to developing applications using ColdFusion ORM" was available. In response to some feedback from the awesome ColdFusion community you can now get it it print as well! Read more »
I'm using ColdFusion ORM in my application and when adding a new persistent entity to my model which has a many-to-one association to an existing entity I was getting a 1005 ErrorCode. Read more »
I often need to display dates where the day has a suffix such as 1st, 2nd, 3rd, 4th. This is a pain to do in CFML as ColdFusion's DateFormat doesn't support it. However, all is not lost! Read more »
I see quite a lot of confusion about how hibernate sessions work in ColdFusion 9's ORM. So I thought I'd put together various examples to see what happens. Read more »
I've just been trying to debug an error with ColdFusion ORM. I'm building a booking system and decided to store the new Booking Entity in the session scope until the final stage of the process at which point I'd call EntitySave. Read more »
When you use HQL, you can choose to select specific properties from an entity (for performance) and also if you want to get aggregate values (such as count and sum). The problem with doing this is that you end up with an array of arrays which isn't very nice to work with. To solve this probblem you can use a map which is similar to a good old ColdFusion struct. Read more »