Solarion
Honorary Master
- Joined
- Nov 14, 2012
- Messages
- 28,050
- Reaction score
- 17,804
I'm getting this strange error all of a sudden. It's the same across all my previously developed applications.
My connection string reads as such
However any connections I try and open to the DB crash because the local account that I log in with keeps getting appended onto the end database name as such.
I've never seen this before. Perhaps some kind of update did this? It is somehow tying my SQL in with my local account I think. No idea. Any thoughts?
My connection string reads as such
Code:
<connectionStrings>
<add name="dbContext" connectionString="Data Source=DESKTOP-OBLIVION;Initial Catalog=StockTracker;Integrated Security=True;User ID=sa;Password=Qwerty12" providerName="System.Data.SqlClient"/>
</connectionStrings>
However any connections I try and open to the DB crash because the local account that I log in with keeps getting appended onto the end database name as such.
Code:
DESKTOP-OBLIVION\\MyHomeMachine
I've never seen this before. Perhaps some kind of update did this? It is somehow tying my SQL in with my local account I think. No idea. Any thoughts?
