You are not logged in.
Pages: 1
If I don't use any Define, does the framework uses COMPRESSDEFLATE as default?
Do You mean in the source of the project like this?
{$R *.res}
{$define COMPRESSSYNLZ}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TfrmServer, frmServer);
Application.Run;
end.
Ab, Is the data compress by default?
If I use on the server side:
{$define COMPRESSSYNLZ}
FServer := TSQLHttpServer.Create('8988', DB);
and on the client side:
{$define COMPRESSSYNLZ}
FHttp := TSQLHttpClient.Create(Servidor, '8988', FModel);
Does this code enable the compression?
Hello,
How can we handle a connection problem? When the client is unable to connect to the server we want to show the user a message about it.
I tried:
try
(...)
except
on E : Exception do
ShowMessage('.....');
end;
But it doen'st work.
Thanks for you time...
Hi, I'm new in this forum.
How did you solve you problem?
Because I'm having the same problem.
Pages: 1