Skip to content

Instantly share code, notes, and snippets.

@abramadams
Last active May 31, 2017 17:27
Show Gist options
  • Save abramadams/3fd3c89193f34aea4c93551f892c61bc to your computer and use it in GitHub Desktop.
Save abramadams/3fd3c89193f34aea4c93551f892c61bc to your computer and use it in GitHub Desktop.
<cfscript>
http = new http(url='https://gist.githubusercontent.com/abramadams/17ffea14993a441780a6edc85608415b/raw/55c7fa54cc5765ec5c5e1b04f8a2d12b3a7fc469/peopleData.json');
jsonData = deSerializeJSON( http.send().getPrefix().fileContent );
people = queryNew(
"id, first_name, last_name, email, gender, ip_address",
"integer, varchar, varchar, varchar, varchar, varchar", jsonData );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment