this is a section of a private section of a class
private
SC : TSQLConnection;
function GetConnStr: widestring;
procedure DatabasesOnServer(Databases : TStrings);
property ConnStr : widestring read GetConnStr;
public
what can somebody explain what does this line do/mean?
"property ConnStr : widestring read GetConnStr;"
the whole thing can be found here :
private
SC : TSQLConnection;
function GetConnStr: widestring;
procedure DatabasesOnServer(Databases : TStrings);
property ConnStr : widestring read GetConnStr;
public
what can somebody explain what does this line do/mean?
"property ConnStr : widestring read GetConnStr;"
the whole thing can be found here :