bug in advantage tables

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
abed
Posts: 15
Joined: Mon 27 Apr 2009 16:39

bug in advantage tables

Post by abed » Wed 16 Sep 2009 14:43

impossible to append record when the table had AutoInc field
it's readonly and null not allowed :!:

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Fri 18 Sep 2009 08:23

Currently Advantage provider cannot detect autoincrement fields. You can assing a value to the field manually or set the RequiredFields option of TUniQuery to False. In the second case posting will be successfull but a value generated in the database does not come to the field of TUniTable.

If the field is read-only, set the ExtendedFieldsInfo specific option for TUniTable to False. This should make the field not read-only.

We will try to add support for autoincrement fields in the next UniDAC version.

Post Reply