Sometimes I need to add a column to an empty table
if (listfind(arguments.config[3], "payout")) {
QueryAddColumn(local.qryResult, "payout", "cf_sql_float");
}
I get an error that looks like
It seems to want a java.util.List
Isn't "cf_sql_float"
a single element list?