Reason for the Silence

Wowzers! It’s been 10 months since I create a post on my blog! There is a good reason for that, I promise. I’m obviously not a prolific blogger like Ray Camden or some of the other folks that seem to be able to churn out blog posts as often as some of us sneeze, but … Read more

How I got started in ColdFusion

After separating from active duty with the US Air Force in early 1998, I took a job working at a telecommunications company located in Brentwood, TN as a desktop and server support IT guy. About 6 months after I started, the company advertised an open position for their first full-time web developer. I applied and, … Read more

Automatically Encrypting and Decrypting Data with ColdFusion ORM and Annotations

I’m writing an application that uses ColdFusion’s ORM features heavily. Various fields in my database deal with Personally Identifiable Information (PII) and need to be encrypted to meet regulatory requirements. I’ve been mulling over the best way to deal with keeping the data encrypted while in the database but have it be readily usable when … Read more

Adding ModelGlue's Event API to ColdFusion Builder's Code Insight

For the last year or so, all of my ColdFusion development projects have been built using the Model-Glue MVC framework. Over time, you get to where you know the most commonly used methods that are used to interact with the framework by heart. Sometimes there are lesser-used methods that you have to go look up. … Read more

Dynamically Set ColdFusion ORM Datasource

I’m a relative novice using ColdFusion’s ORM features having done just one “real” project so far that took advantage of it. I’m working on an application that needs to be able to set the datasource for each request based on the URL that the customer is using to access the site.  For example, if a … Read more

Embracing "New" in ColdFusion 9

I’m not sure how I missed this before but among the long list of things added to ColdFusion 9 is the ability to create a CFC using the “New” syntax. Up until now, to create a new object from a CFC we’d use the createObject() method like so <cfset Team = createObject(“component”, “model.Team”) /></pre>Now, using … Read more

My ColdFusion Anniversary

Well, not quite yet, but since I’m going to be out of pocket the next several days, I wanted to put this out now.  Monday, March 22 will mark 10 years since I began my “journey” with ColdFusion.  That day in 2000 was my first day in a class called “Fast Track to ColdFusion”. The … Read more

Be Careful With the ‘local’ Scope When Migrating from CF8 to CF9

One of the really nice “fixes” included in ColdFusion 9 from a developer’s perspective is the inclusion of an implicit “local” variable scope into which variables created within the body of a <cffunction> tag are placed by default. Previously, developers had to manually add a “var” keyword to variables that should only exist within the … Read more