By using SQLOLEDB as the provider in my connection string, I am able to use
Standard Security. However, despite the fact that my development box has a
trusted connection with the SQL Server, I cannot login trusted. I
consistently get the error message, "Not associated with a trusted
connection" I have tested my trusted connection status via an ISQL window
and indeed I can connect as trusted, but my VB app cannot. Here is the
connection string I have been using:
Provider=SQLOLEDB;Integrated Security=SSPI;Persist Security
Info=true;database=DatabaseName; User ID=; password=; server=ServerName;"
Thanks
AW