XMLAConnection
With BI# you can access OLAP databases in different ways. One way is XMLA
(XML for Analysis), a widespread industry standard that is supported by many products.
To connect to an XMLA server, you must create an XMLAConnection
object in BI#:
#define EngineVersion 3.0
#define RuntimeVersion 3.0
void XmlaConnectionDemo()
{
string url = "https://localhost:8211";
string olapUser = "Admin";
string olapPassword = "";
string httpUser ="";
string httpPassword = "";
string catalog = "Tutor_EN";
XMLAConnection connection = XMLACreateConnection(url, olapUser, olapPassword, httpUser, httpPassword, catalog);
}