MSSQL problems with forward slash in Domain\Username url #165
Unanswered
frostspanner
asked this question in
Q&A
Replies: 1 comment
-
|
I know this is a year and a half later, but I was just having this issue myself today. RayJameson's related discussion comment here should help. You basically need to escape/url-encode the connection string and then it should work. So the backslash '\' will become '%5C': |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From what I can tell, connecting with Windows Authentication should require a url like
sqlserver://domain\user@server . . ., but I'm unable to get this to work in my neovim config. When I open dbee there is an error saying the urlsqlserver://domain\\user@server(note the extra forward slash) could not be parsed. I've tried writing the url several ways in the lua config, but all attempts end up with an extra forward slash or a broken neovim config due to invalid escape character. Is there any way to make this work?Beta Was this translation helpful? Give feedback.
All reactions