Viewing 8 posts - 1 through 8 (of 8 total)
Why is it better?
http://msdn.microsoft.com/en-us/library/ms130828(SQL.90).aspx
For new applications, if you're using a managed programming language such as Microsoft Visual C# .NET or Visual Basic .NET, and you need to access...
April 15, 2009 at 3:10 am
Ok thanks.
In conclusion :
- for managing sqlserver : SMO
- for query : ADO.Net with .NET Framework Data Provider for SQL Server
April 15, 2009 at 2:24 am
Hi, thank you for your answer.
Actually I want to know the difference between using SMO and ADO.Net with Native SQL Server .Net Data Provider in terms of performance (connection and...
April 15, 2009 at 1:09 am
To change a password :
Dim log As Login = myServer.Logins(myLogin)
log.ChangePassword(myPwd)
instead of
Dim log As New Login(myServer, myLogin)
log.ChangePassword(myPwd)
Of course, the login has not to be "nothing".
March 12, 2009 at 9:13 am
Right. Sorry.
I'll try tomorrow.
Thanks
March 11, 2009 at 12:49 pm
What do you mean "on changing the password"?
I don't need to change it.
March 11, 2009 at 10:50 am
Thank you for your answer but I've found out!
I have to delete the schema and database users for the login first and replace Dim log As New Login(myServer, myLogin)
If myServer.Logins.Contains(myLogin)...
March 11, 2009 at 5:17 am
Viewing 8 posts - 1 through 8 (of 8 total)