美文网首页
客户端sql执行

客户端sql执行

作者: 风语007 | 来源:发表于2016-10-13 21:53 被阅读0次

    1,INewService的AllowExecuteSQL设置为true。NewService_Impl单元右击,属性编辑器里面设置。
    2,具体代码如下。需要引入服务端定义接口的单元。

    var
      FService:INewService;
      aRow: Integer;
    begin
      FService := ClientDataModule.RemoteService as INewService;
      aRow := FService.SQLExecuteCommand('update stu set name = concat(name,''2'')');
      ShowMessage(IntToStr(aRow));
    end;
    

    相关文章

      网友评论

          本文标题:客户端sql执行

          本文链接:https://www.haomeiwen.com/subject/rhcgyttx.html