Hello,
I have a question. I don't know how to use SessionID property of the
AdomdConnection.
I thought that once I open connection, I can get it and then after
disconnecting, use it to connect to the same session. This way I wanted to
implement connection pooling.
My code looks like this:
AdomdConnection connection=new AdomdConnection(...);
connection.Open();
string sessionID = connection.SessionID;
....
connection.Close(false);
.....
connection.SessionID = sessionID;
connection.Open(); <--- and here I got exception: The Session, '..' does
not
exists.
.....
What am I doing wrong here ?
Best regards
Peter