You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()
The text was updated successfully, but these errors were encountered:
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.:
The text was updated successfully, but these errors were encountered: