No updates applied to FB25 via Relativity server

Based on VCL wizard I created a small demo to work with local installation of Relativity and FB2.5 server.

After installing latest .net driver of Firebird and updated DataAbstract.daConfig to match version # of installed driver (Version=6.1.0.0) I was able to import a table to schema and display some data in my demo vcl app’s dbgrid.

Now if I want to edit or insert some data changes are disappearing right after posting and refreshing. In fact nothing is stored at all.

What do I miss in my setup to get a working/updating connection?

TIA.

Relativity Server: v9.4.109.1377
Data Abstract: v9.4.109.1377
RemObjects SDK: v9.4.109.1377

Framework: v4.0.30319.42000
Operating System: Microsoft Windows NT 6.2.9200.0
Platform: Win32NT

Hello

The setup you described should work without any issues.
Could you please create a simple testcase (database, updated .daConfig, client application and Schema) and send it to support@ ? That would be the fastest way to recreate the issue locally to find out what’s going wrong.

Thanks in advance.

VCLApplication3.zip (105.6 KB)

Will send it to support, too.

as I can see from your testcase, you open table only and don’t send updated data back to server.
your code contains only

procedure TClientForm.FormShow(Sender: TObject);
begin
  if ClientDataModule.LogOn('Data', 'Relativity') then
    ClientDataModule.tbl_A_USER.Open;
end;

and doesn’t contain code like

ClientDataModule.tbl_A_USER.ApplyUpdates();

as expected?

Added ApplyUpdates(); and it’s working now.

Thank you.