Closed
Description
Reusing the "favorite" approach recently introduced, I found an issue that was also reported from a user via email where the link URL was prefixed with control characters. Solution is to force logical mode for the SQL query in question - e.g.:
set statement = ##class(%SQL.Statement).%New()
set statement.%SelectMode = 0
do ##class(%SQL.Statement).%ExecDirect(statement,sql,caption,link).%Display()
Activity
First pass at "pull" UI and other related enhancements to simplify co…