[Mono-devel-list] Test Integrated Security in System.Data.SqlClient

Daniel Morgan danielmorgan at verizon.net
Tue Feb 3 21:49:24 EST 2004


Can developers test Integrated Security in System.Data.SqlClient for me
please?

Integrated Security aka NTLM Authentication aka Domain Login aka Windows
Authentication
was added to Mono around versions 0.29/0.30.

With the release of Mono 0.30, can people test connecting to Microsoft SQL
Server 2000 via Windows Authentication?

Please note: in Mono's version of SqlClient, you need to give your Windows
User ID and Password for it to work.

If you are on a Windows domain, you can use this connection string:
"Server=SERVER_HOSTNAME;" +
"Database=DATABASE_NAME;" +
"User ID=DOMAIN_NAME\user_name;" +
"Password=your_password;"

If you are not, and you have SQL Server installed locally, you can use this
connection string:
"Server=localhost;" +
"Database=DATABASE_NAME;" +
"User ID=windows_user;" +
"Password=your_password;"
"Integrated Security=SSPI;"

I really would like to get feedback on this whether or not it works for you.
If you are able to debug the problem or isolate a test case -- even the
better!

Thanks,
Daniel




More information about the Mono-devel-list mailing list