Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 xmlaClient 对象连接到 c# 中的特定服务器。现在我想列出该特定服务器中的所有数据库。如何实施。请帮我。
谢谢
您可以将发现方法与连接对象一起使用。代码片段如下
XmlaClient xmlConn = new XmlaClient(); xmlConn.Discover("DBSCHEMA_CATALOGS", "", "", out outParam, false, false, false);
它以 xml 格式提供所有数据库列表。现在您可以使用 linq to xml 概念检索该 xml 中的数据库。