Hi,
Is there anyway to connect to an MDF file without using a trusted logon?
I've gone into management studio and created an account called bob with password bob, given that account full access and also added the account to the database. When i try to connect using that account I get the following error
Login in failed for user 'bob'. The user is not associated with a trusted SQL server connection.
Here is my connection string
<add name="testdata"
connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\cidata.mdf;Connect Timeout=30;User Instance=True;User Id=bob;Password=bob"
providerName="System.Data.SqlClient" />
Are there any limitations with MDF? I'm trying to get around the 200MB database limit given to me by godaddy so any other recomendations for a database (except access) would be welcome.
Thank you