I am using TUniStoredProc to access stored procedures in SQL Server. The problem I have is that when I go to use TUniStoredProc I am prompted to login to my sql server database. I can not log in using the TUniConnectDialog which TUniStoredProc uses because I am using SQL Server with windows authorization.
How do I get past this problem?
TUniStoredProc problem
-
AndreyZ
To solve the problem, you should set the Authentication specific option to auWindows. Here is an example:
Code: Select all
UniConnection.SpecificOptions.Values['Authentication'] := 'auWindows';
[/img]