PHP Active Directory失败

时间:2017-09-14 15:10:52

标签: php windows ldap

create table TextTest
(
    VarCharCol nvarchar(max)
    , NTextCol ntext
)

go

exec sp_columns 'TextTest'

select ColumnName = c.name
    , ColumnDataType = t.name 
from sys.columns c
join sys.systypes t on t.xusertype = c.user_type_id
where object_id = OBJECT_ID('TextTest')

我正在尝试连接到Active Directory服务器。但是,我收到了一个错误。 “登入错误”。实际上我的目的是添加用户。

0 个答案:

没有答案
相关问题