Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connect to SQL Server

Status
Not open for further replies.

Ginka

Programmer
Mar 18, 2005
54
MX
How can I get a connection to Sql Server without being connected to the server?

I mean,
if I want to run my app, first I need to be logged in to the server by using the my network places, then I put my user name and password, this is exactly what I want to ommit. I just wanna run my app.
 
I got it, by using the "guest" user.

thanks anyway
 
you could also change your connection string to use a trusted connection which will authenticate the client based on their windows login:

Data Source=<server>;Initial Catalog=<database>;Integrated Security=SSPI;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top