Shares database connection between the TCustomMyConnection components.
procedure AssignConnect(Source: TCustomMyConnection); virtual;
Use the AssignConnect method to share database connection between the TCustomMyConnection components.
AssignConnect assumes that the Source parameter points to a preconnected TCustomMyConnection component which connection is to be shared with the current TCustomMyConnection component. Note that AssignConnect doesn't make any references to the Source TCustomMyConnection component. So before disconnecting parent TCustomMyConnection component call AssignConnect(Nil) or the Disconnect method for all assigned connections.