websolete
11/18/2024, 4:45 PMquerynew( "colOne,column two")
. has anyone ever tried to do this and found a way to massage cf to recognize these columns? tried quoting and square bracketing the columns in the list but no workeeMichael Schmidt
11/18/2024, 4:57 PM<cfscript>
qry = QueryNew("colOne");
QueryAddColumn(qry, "column two", []);
WriteDump(qry);
</cfscript>
websolete
11/18/2024, 4:59 PMMichael Schmidt
11/18/2024, 5:00 PMwebsolete
11/18/2024, 5:02 PMMichael Schmidt
11/18/2024, 5:05 PMMichael Schmidt
11/18/2024, 5:20 PM<cfscript>
qry = QueryNew("test");
qry.setColumnNames(["test test"]);
WriteDump(qry);
</cfscript>
websolete
11/18/2024, 5:21 PMwebsolete
11/18/2024, 5:22 PMMichael Schmidt
11/18/2024, 5:22 PMqry = QueryNew("test");
WRiteDUmp(qry.getClass().getName());
tst = CreateObject("java", "coldfusion.sql.QueryTable");
WriteDump(tst);
websolete
11/18/2024, 5:24 PMwebsolete
11/18/2024, 5:27 PMquerySetCell( qry, "test test", 123)
cfsimplicity
11/18/2024, 5:28 PMwebsolete
11/18/2024, 5:30 PMwebsolete
11/18/2024, 5:30 PMwebsolete
11/18/2024, 5:39 PMbkbk
11/18/2024, 9:31 PMwebsolete
11/18/2024, 9:34 PMwebsolete
11/18/2024, 9:36 PMgavinbaumanis
11/18/2024, 10:21 PMaliaspooryorik
DeSerializeJSON
https://trycf.com/gist/3f9360739f0c5e10f5e6141bf3030466/acf2023?theme=monokaiwebsolete
11/19/2024, 2:46 PM