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
If your SQL Server instance name has an extended character like TJUTVÅ the lookup will fail.
The driver doesn't convert the ASCII string correctly, it just converts the bytes to string.
2 Options:
Fix the current code to convert the ASCII string containing escape codes to UTF8 correctly, or
Change the lookup to use message 4 to get the port for the specific instance instead of getting instances for all messages. Properly encode the instance name to ASCII to make the request packet.
The text was updated successfully, but these errors were encountered:
If your SQL Server instance name has an extended character like
TJUTVÅ
the lookup will fail.The driver doesn't convert the ASCII string correctly, it just converts the bytes to string.
2 Options:
The text was updated successfully, but these errors were encountered: