Hi, For days I am trying to connect to my data from a C# program. I have tried many different ways (Integration Technologies, ADODB, OLEDB) and many different connection strings but none have worked so far. Here is how I would connect to the data (using SAS/SHARE and SAS/Connect) from within a SAS Session, %let conn1 = abc123.xyz.com 9999; signon conn1; *< here I enter my username and password in the pop-up window>; libname mylib remote '/dir1/dir2/dir3' server = conn1; Has anyone any experience in how to read a dataset on a different server using C#? I'm sure it's my connection string that's incorrect. It would be really amazing if someone could suggest some code using the details as above (server:abc123.xyz.com port:9999 UserId: username Password: password library to get dataset from:mylib) . Like I said, I have been trying for a long time and have look at all the cookbooks and articles I could find, that's why a concrete connection string or C# code would be really appreciated as opposed to a pointer to reference material. Thanks in advance for any help!
... View more