Icon View Incident Report

Serious Serious
Reported By: Bernd Kuhlmann
Reported On: 3/29/2004
For: Version 3.27 Build 1
# 1627 Calling the TDBISAMTable DeleteIndex Method and AddIndex Method Results in Error

The following code generates an error "10027 The secondary index 'name_idx' already exists for the table 'vertret'". This only happens in the C/S-Version. The fileserver-version does not produce this error.

 tb.deleteIndex('name_idx');
 tb.addindex('name_idx','Name',[ixcaseinsensitive]);

Workaround:
  tb.deleteIndex('name_idx'); 
  tb.close;
  tb.open;
  tb.addindex('name_idx','Name',[ixcaseinsensitive]);



Resolution Resolution
Fixed Problem on 3/30/2004 in version 3.28 build 1
Image