A keyword. Always means always prompt before attempt to connect. Never means never prompt even if the connection attempt fails (just fail with an error message going to the log), and IfNeeded (the default) means prompt if the attempt to connect with the given arguments fails (or is not possible with the information given).
1 if the data table was exported successfully; 0 otherwise.
Get a list of filenames found in the given "fileref" on this SAS server connection.
Get a list of filenames found in the given "path" on this SAS server connection.
option_names = sasconn << Get Option Names();
For(i=1, i <= N Items(option_names), i++,
	option_value = sasconn << Get Option Value (option_names[i]);
	output = option_names[i] || "=" || char(option_value) || "/!n";
	Write(output);
);
1 if sasconn is connect, 0 otherwise.
Download the file specified in "path" from the active SAS server connection and retrieve its contents as a string.

Help created on 7/12/2018