Directory Services |
ADSI for Windows 2000 and DS Client includes a read-only OLE DB provider. This means that you cannot issue the UPDATE statement in the SQL dialect at present.
To modify an object returned from an ADO query
The following code example illustrates how to modify an ADSI object after performing the steps outlined in the preceding example.
[Visual Basic]
' Replace department for all users in OU=sales.
Set con = Server.CreateObject("ADODB.Connection")
con.Provider = "ADsDSOObject"
Set command = CreateObject("ADODB.Command")
Set command.ActiveConnection = con
command.CommandText = "SELECT AdsPath, cn FROM 'LDAP://OU=Sales,DC=Fabrikam,DC=com' WHERE objectClass = 'user'"
command.Properties("searchscope") = ADS_SCOPE_ONELEVEL
Set rs = command.Execute
While Not rs.EOF
Set usr = GetObject(rs.Fields("AdsPath").Value)
usr.Put "department", "1001"
usr.SetInfo
rs.MoveNext
Wend