Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/86d6f4c1fe54baa964055d0ac61042ec to your computer and use it in GitHub Desktop.
Save trycf/86d6f4c1fe54baa964055d0ac61042ec to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
qry = queryNew( "name,items","varchar,object" )
qry.addRow( 1 )
qry.setCell( 'name', 'Brad' )
qry.setCell( 'items', [ 1, 2, 3 ] )
qry.addRow( {
'name' : 'Luis',
'items' : [ 4, 5, 6 ]
} );
writedump( qry )
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment