AdomdConnectionException未处理 - 连接字符串无效

时间:2017-07-03 06:28:48

标签: c# adomd.net

     public static void connect()
     {   
        try
        {
            string connectionStringStaging = @"Data Source=<server_name>;Catalog=<catalog_name>;User ID=<user_name>;Password=<my_password>";
            string commandText = @"SELECT NON EMPTY { [Measures].[# Opptys moved to Committed] } ON COLUMNS FROM [Model] 
                                    CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE, FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS";
            AdomdConnection connection = new AdomdConnection(connectionStringStaging);
            connection.Open();
            AdomdCommand cmd = new AdomdCommand(commandText);
            cmd.Connection = connection;
            using (var reader = cmd.ExecuteReader())
            {
                while (reader.Read())
                {
                    Console.WriteLine(reader[0]);
                }
            }
        }
        catch (AdomdConnectionException ex)
        {
            Console.WriteLine("Error : " + ex.ToString());
        }
     }

我使用上面的代码连接到服务器,然后我使用这个进一步运行MDX查询。问题是我得到的错误 - &#34;连接字符串无效&#34;在线

connection.open(); 

我在连接字符串中使用的设置名称是否不正确?有人可以帮我弄清楚连接字符串中的错误吗?

堆栈跟踪如下: enter image description here

2 个答案:

答案 0 :(得分:0)

请参阅Microsoft的以下文档:https://msdn.microsoft.com/en-us/library/microsoft.analysisservices.adomdclient.adomdconnection.connectionstring.aspx

您还可以在此处找到一些连接字符串示例:https://www.connectionstrings.com/adomd-net/

希望这可以帮助您解决问题。

答案 1 :(得分:0)

我找到了答案here。非正式的包装工作得很好。所以我安装了引用Unofficial.Microsoft.AnalysisServices.AdomdClient,因此问题不在连接字符串中,而是在包中。