Hi,
I'm trying to use this version CRforVS 13_0_8 to view my report with SAP HANA and i get this error incorrect report source, but i don't know if this version support SAP HANA or is something missing on my code. Here is the code :
ConnectionInfo connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = dbServ;
connectionInfo.DatabaseName = BDCompany;
connectionInfo.UserID = dbUser;
connectionInfo.Password = dbPsw;
the dbServr is the servername and the port. And I try this to
ConnectionInfo connectionInfo = new ConnectionInfo();
string hanaSername = "Driver={HDBODBC32};ServerNode=" + dbServ + ";";
connectionInfo.ServerName = hanaSername ;
connectionInfo.DatabaseName = BDCompany;
connectionInfo.UserID = dbUser;
connectionInfo.Password = dbPsw;
Greetings.