![]() | Products |
| Home » Technical Support » DBISAM Technical Support » Product Manuals » DBISAM Version 4 Manual for RAD Studio XE (Delphi) » Using DBISAM » Calling Server-Side Procedures |
begin
with MyRemoteSession do
begin
RemoteParams.CreateParam(ftInteger,'ID').AsInteger:=10;
RemoteParams.CreateParam(ftString,'Name').AsInteger:='Test';
try
{ Now call the procedure }
CallRemoteProcedure('Test_Procedure');
if RemoteParams.ParamByName('Result').AsBoolean then
ShowMessage('The record was added successfully')
else
ShowMessage('The record was not added successfully');
except
ShowMessage('There was an error calling the '+
'server-side procedure');
end;
end;
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

