If you define an object in your project like this:
Code:
Object oMySQLExecutor is a cSQLExecutor
    Move Self to ghoSQLExecutor
    
    Set psConnectionId to "MyConID"
End_Object
Now if your project use this object with embedded SQL calls and you change the database with RedirectConnectionId
Does RedirectConnectionId also change psConnectionId in the "oMySQLExecutor" object? Or do we need to change that manually?