Does anyone know if there is any trace of a table that is dropped from a bank? To facilitate if it is recreated, for example, and when I say trace is in the bowels of the same bank.
I'm going through that famous problem of 'Could not perform the edit because another user changed the record.' in a SQL connection with BDE / Delphi, the programming part in Delphi has already done everything to avoid the problem.
Now, if you create a new table with another name, but with the same structure and table data that has the field that displays the error, which in this case is FLOAT , the table new does not display the error.
Following this process, if you delete the table that presented the error, and recuse it with the same name, taking the structure of the new table that you created and passing the data back to that table, the error happens again.
That is, the problem only happens when I create the table with the name in which the error was first displayed. The only suspicion I have left is that the database stores some information about the table that has been dropped, and when it is re-created, it edits your data in some way, which causes the error.