我希望能够使用以下签名声明Data Snap方法
type
TLoginInfo = record
Username: string;
Password: string;
LastLogged: DateTime;
end;
function GetLoginInfo(const UserId: Integer): TLoginInfo;
当我尝试调用它时,它说 TLoginInfo 并不为人所知。
答案 0 :(得分:1)
将记录存储到流中并将流传递给DataSnap方法
//在服务器端
function GetLoginInfo(const UserId: Integer): TStream;
begin
Result := TMemoryStream.Create;
Result.Write( loginRec, SizeOf(TLoginInfo) )
Result.Seek(0, TSeekOrigin.soBeginning);
end;
//在客户端
procedure TfrmMain.getLogInto( sUser: string);
var
AStr : TStream;
loginRec : TLoginInfo;
begin
// cycleConnection;
with TMethodsClient.Create( SQLConn.DBXConnection, False ) do begin
AStr := GetLoginInfo( sUser );
AStr.Read( loginRec, SizeOf(TLoginInfo) )
Free;
end;
FreeAndNil(AStr);
end;
答案 1 :(得分:1)