如何在 DataSnap 方法中返回记录
我希望能够声明具有以下签名的 Data Snap 方法,
type
TLoginInfo = record
Username: string;
Password: string;
LastLogged: DateTime;
end;
function GetLoginInfo(const UserId: Integer): TLoginInfo;
当我尝试调用它时,它表示 TLoginInfo 不是众所周知的。
I wish to be able to declare a Data Snap method with the following signature
type
TLoginInfo = record
Username: string;
Password: string;
LastLogged: DateTime;
end;
function GetLoginInfo(const UserId: Integer): TLoginInfo;
When I try to call it it says that TLoginInfo is not well known.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是“新”Datasnap,请参阅此处:
http://blogs.embarcadero.com/adrian/2009/08/19/json-types-for-server-methods-in-datasnap-2010/< /删除>https://blogs.embarcadero.com/json -types-for-server-methods-in-datasnap-2010/
http://www.danieleteti.it/?p=146
If your are using the "new" Datasnap see here:
http://blogs.embarcadero.com/adrian/2009/08/19/json-types-for-server-methods-in-datasnap-2010/https://blogs.embarcadero.com/json-types-for-server-methods-in-datasnap-2010/
http://www.danieleteti.it/?p=146
将记录存储到流中并将流传递给 DataSnap 方法
// 在服务器端
// 在客户端
store the record into a stream and pass the stream to the DataSnap method
//on server side
//on client side