Hi
We figured out that the Property Required from TFieldDefs is always False when we're using your driver. If we use the standard Borland/CodeGear-Driver it works fine.
We're using the version 4.10.3.0
Is there are workaround for this issue?
Thanks in advance
TFieldDefs Required is always false
You should setup the RequiredFields option of DbxSda to retrieve such meta information.
You can do this in the AfterConnect event of TSQLConnection:
For more information see Readme.html located in the DbxSda installation directory.
You can do this in the AfterConnect event of TSQLConnection:
Code: Select all
procedure TForm1.SQLConnection1AfterConnect(Sender: TObject);
const
coRequiredFields = TSQLConnectionOption(307);
begin
SQLConnection1.SQLConnection.SetOption(coRequiredFields, Integer(PChar('Required')));
end;