Here is my connection string.
string connectionString = @"Data Source=.\SQLEXPRESS;Database=dbo.Employee; User Id=user1; Password=Password11";
I have a database called Employee with a table called [EVUSERS] in the dbo schema.
I have created a database login under sql logins for this username and password, for some reason it wont allow me to login to the server at the connect to server window.
Whenever I try and use the connection string in the form in my C# I keep getting an error
logon failed for 'user1'
I am not sure if its a server side issue I have or a c# side. thanks
dbo.in front of your Database name. But yes it seems like a username/password issue.dbo.in front of your database. The schema relates to your database objects, not the database itself.