I have a web application in ASP that updates a table in a SQL Server database. We have a windows network here. Is there any connection string for ADO using OLEDB that will persist the windows login information through to SQL Server?
This does not seem to work, even though the user is registered on the server and has access to the database. It seems that SQL Server sees it as an anonymous login attempt:
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
This does not seem to work, even though the user is registered on the server and has access to the database. It seems that SQL Server sees it as an anonymous login attempt:
Code:
Driver={SQL Server};Server=ServerName;Database=database;Uid=user;Pwd=pass;"
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.