Originally posted by szlamany
Domain accounts do not use the same connection strings as SQL Authentication accounts. Something more like this...

VB Code:
  1. sConStr = "Provider=SQLOLEDB.1;" & _
  2.               "Integrated Security=SSPI;" & _
  3.               "Server=YourSQLServer;" & _
  4.               "Initial Catalog=YourDBName;"

BTW - Mixing authentication types - why?? MS recommends Win2K authentication - not SQL authentication. Why have you made your choice??
But there's no username and pass for that connection string?, it authenticates with the logged account?, thats not what I want.

BTW - Mixing authentication types - why?? MS recommends Win2K authentication - not SQL authentication. Why have you made your choice??
Dont know, this is the first time I wirk with SQL Server.