Skip to content

Instantly share code, notes, and snippets.

@chippinkston
chippinkston / demoService.cfc
Created August 7, 2015 20:14
A demo FW/1 service to test DB connections
component accessors=true output=false persistent=false {
property datasource;
public query function getOneRecord(){
var q = queryExecute(
"select name, abbrev from state limit 1"
, {datasource = "#getDatasource().name#"}
);
return q;
}