lettumika

  • I have been working with other subjects but returned to this now.
    I found the following:
    IndexFieldNames := ‘Field:U’ doesn’t work

    but IndexDefs.Add(CustId’,’CustId’,[ixPrimary,ixUnique]); works when done if table if opened after that (of course)

     

  • Hi,

    I’d like to create unique index for kbmmemtable.

    I have tried CustomerMemTable.IndexFieldNames := ‘CustID:U’

    or
    CustomerMemTable.IndexDefs.Add(CustId’,’CustId’,[ixPrimary,ixUnique]);
    It works so that insert fails but there is no error generated . also no error is generated when index is modified to unique (only other non unique record…[Read more]