DB connection problem

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I have a SqlServer database which I try to access from the
CompactFramework/PocketPC.
In my connection string I haven't specifyed the database as I want to query
them throught the sp_databases stored procedure.
But I have specifyed and administrator user/password.

When I try to connect to the server it returns the following SQL error:
"not associated with a trusted SQL Server connection"

What could it be?
All I found on the net was some NTLM authentification problem, but I guess
my problem is different, it's not a web browser issue!
 
In your SQL Server make sure that you have enabled SQL Server Authentication
and are not using Windows Authentication.
 
That does not look like a valid connection string, but aside of that the
other poster's suggestion sounds like it's right on the money
 
Back
Top