本文介绍了"ADSDSOObject"失败,没有可用的错误消息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我试图执行下面的代码,我抛出异常''ADSDSOObject"失败,没有错误消息".
在google之后,我发现了这个 http://support.microsoft.com/kb/890307 [ ^ ]
但仍然无法理解正确的问题.我用来连接我的广告并从其他代码中检索值.
这是下面的代码
Hi All,
Am trying to execute the code below ,i throws exception "''ADSDSOObject'' failed with no error message available".
after google a lot i found this http://support.microsoft.com/kb/890307[^]
but still not able to understand the correct problem.i use to connect my AD and retrieve values from other code.
Here is the code below
using System;
using System.Data;
using System.Data.OleDb;
using System.Data.SqlClient;
class Program
{
static void Main(string[] args)
{
DataTable users = GetEnabledUsers();
using (SqlConnection cnx = new SqlConnection("Your Connection String"))
{
cnx.Open();
using (SqlCommand cmd = cnx.CreateCommand())
{
foreach (DataRow user in users.Rows)
{
if (user["otherPager"] != DBNull.Value && !String.IsNullOrEmpty((string)user["otherPager"]))
{
if (user["mail"] != DBNull.Value &%3
[edit]已修复链接-OriginalGriff [/edit]
[edit]Link fixed - OriginalGriff[/edit]
推荐答案
这篇关于"ADSDSOObject"失败,没有可用的错误消息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!