Subject Remote server is locked after create remotedatamodule
Author davissammybr
Hi,

My project is a remote server using a remotedatamodule. There are
one Tib_Connection, one TIboquery and one TTimer component. After
call two clients or more my server stop.
In "oncreate" event of my remotedatamodule i'm using the following
block:

Begin
IB_Connection1.Password := 'masterkey';
IB_Connection1.Connect;
end;

In "afterconnect" event of IB_Connection1 i'm using it:
begin
My_Ttimer.enabled := true;
end;

On the "ontimer" event of this timer the procedure "trying" is
called. My Timer use the interval=1000.

Procedure trying
begin
With My_TIboquery do
Begin
Sql.add('Update my table set field1='3' ');
execsql;
sql.clear;
end
end;


Thanks all,
and sorry for my bad english.