User1400794712 posted
Hi bthJ6,
Just like what budugu and DA924 said, when we set Integrated Security=False:
Comes from
msdn document:
When false, User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication.
Recognized values are true, false, yes, no, and sspi (strongly recommended), which is equivalent to true.
So, in the connection String, you should add user id and password(which can login this database) in it.
The connect string should be:
string connectionString = @"Data Source=BRENTHUMBER\BRENT;Initial Catalog=BrentPractice;Integrated Security=False;User Id==XXXX;Password=XXX";
Best Regards,
Daisy