Can someone tell me why I’m getting this error? @Db function failed because the data type of the requested column is unsupported.
I have this code in a Dialog List w\ Use formula for choices.
classcache := “ODBC” : “NoCache”;
dns_name := “CAP_CONN”;
user := “CAP_CONN”;
pwd := “XXXXXX”;
nulls := “Discard”;
sort := “ascending”;
table := "dbo.tblCap ";
col := “CapName”;
tmp := @DbColumn(classcache; dns_name; user; pwd; table; col : nulls; “Distinct” : sort) ;
@If(@IsError(tmp);tmp;tmp)