I'm having difficulties trying to connect to a SQL Server instance in pypyodbc. The server name has a backslash in it eg "servername\something", instead of just the servername.
In pypyodbc, i've tried all different variations,
Server=servername\something
Server=servername\\something
Server=[servername\something]
Server=[servername\\something]
But none of them seem to work. I get the following error message
pypyodbc.DatabaseError: ('08001', '[08001] [Microsoft][ODBC SQL Server Driver][DBNETLIB]SQL Server does not exist or access denied.')
How can I pass the name of the server?
I can connect to other servers fine as long as they don't have the backslash