Created
June 19, 2025 08:48
-
-
Save trycf/bd8cc02f1045a68e47254703edb4afed to your computer and use it in GitHub Desktop.
TryCF Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
// Creo la query fittizia con le colonne specificate | |
qUtenti = QueryNew("id,nome,email", "integer,varchar,varchar"); | |
writeOutput(qUtenti); | |
// Aggiungo i dati alle colonne | |
/*QuerySetCell(qUtenti, "id", [1, 2, 3]); | |
QueryAddColumn(qUtenti, "nome", ["Alice", "Bob", "Charlie"]); | |
QueryAddColumn(qUtenti, "email", ["alice@example.com", "bob@example.com", "charlie@example.com"]); | |
// Output per verifica | |
WriteDump(qUtenti);*/ | |
</cfscript> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment