Scaffolding CRUD functionality in CFML - SELECT all the things!

Following on from my recent post where I detailed my approach to CFC organisation, I wanted to share some more details of my current CFML coding methodology. Today I’m going to talk a little about database interaction. Unless you’re taking advantage of ORM in your CF application, you will most likely have to spend a bit of time scaffolding your components with some standard CRUD functionality. Some developers like to use a single component to manage all database interactivity, but I tend towards creating functions for each individual component. The goal is to have a standardised set of…

Read More