dxc
dxc

Reputation: 63

How ASP connects to SQL

I don't program in ASP at all, but I'm trying to figure out how a particular asp app connects to a database. the database username/password/server aren't stored in the source itself, it's not stored in the one #include, and it's not stored in global.asp. is there another way? or am I missing something?

Upvotes: 0

Views: 77

Answers (2)

Dee
Dee

Reputation: 1420

Possibly using a DSN connection

Upvotes: 0

Blake Taylor
Blake Taylor

Reputation: 9341

It's probably using integrated authentication which uses the windows account the process is executing under. In development this would be your account.

Upvotes: 2

Related Questions