Using Local Advantage version 10.10.0.6 on XP writing in Delphi 2005. I can restructure tables in terms of adding columns but having issue when trying to change the width of a column from 30 to 100 characters. The column is not indexed. Code to restructure is Restructure('','','Description2,Description2,Char,100'); but getting message ...raised exception class EADSDatabaseError with message 'tblNomixM: Error 5041: The requested object was not found. .\ccolumn.cpp, 4995'. Process stopped. Used Step or Run to continue. Have checked column name and it is as per the database. Any suggestions welcomed. |
Some possible scenarios for this error:
|
That was the issue - thanks a lot. Table structure and meta data was out of sync. Went through each table with the select statement and found offending table. Exported to a New Table. Removed the old one. Added the new table into the dictionary and all is OK. |