Subject IB_Connection property of TIBOTable changes mysteriously
Author jacobhavkrog
Hi - I use IBO 4.9.14.52.

I have a problem with the property IB_Connection of TIBOTables.

Sometimes this property is reset to another value. I'm in the process of migration from the BDE using GReplace, and I think it happens, when the migrated project is first opened in my Delphi XE IDE.

This setting

object UserTable: TIBOTable
SessionName = 'Default'
DatabaseName = 'SKData'
IB_Connection = Database
PreparedEdits = True
PreparedInserts = False
RecordCountAccurate = True
TableName = 'USERS'
FieldOptions = []
Left = 146
Top = 164
end

get changed to

object UserTable: TIBOTable
SessionName = 'Default'
DatabaseName = 'SKData'
IB_Connection = SystemServerModule.SystemConnection
PreparedEdits = True
PreparedInserts = False
RecordCountAccurate = True
TableName = 'USERS'
FieldOptions = []
Left = 146
Top = 164
end


where the SystemServerModule isn't event part of the project, but it only happens to be loaded to another project in my project group.

What could be going wrong here?

Cheers
Jacob