Using RemoteDB with UniDAC

Hi,
i get an serverside access violation when i use unidac instead of ADO on the server.
I tried to change the DEMO in the following way:
1. use a TUniConnection
2. add RemoteDB.drivers.unidac to uses clause
3. Change CreateIDBConnection
   function TForm1.CreateIDBConnection: IDBConnection;
   begin
     CoInitializeEx(nil, COINIT_MULTITHREADED);
     Result := TUnidacConnectionAdapter.Create(UniConnection1, true);
   end;

sorry - solved this problem on my own. I did not create the connection myself, but used the one on the form, which is not threadsafe.