L
lhxs
Unregistered / Unconfirmed
GUEST, unregistred user!
unit backtype;
interface
type mybacktype = array of string;
type
Tbacktype = class
private
//back_type : array of string;
public
function getbacktype:mybacktype ;
property db_type:mybacktype read getbacktype ;
end;
implementation
function getbacktype:mybacktype;
var
s_type : mybacktype;
begin
s_type[0] := 'oracle';
s_type[1] := 'MSSQLServer';
Result := s_type;
end;
end.
interface
type mybacktype = array of string;
type
Tbacktype = class
private
//back_type : array of string;
public
function getbacktype:mybacktype ;
property db_type:mybacktype read getbacktype ;
end;
implementation
function getbacktype:mybacktype;
var
s_type : mybacktype;
begin
s_type[0] := 'oracle';
s_type[1] := 'MSSQLServer';
Result := s_type;
end;
end.