ConnectionSettings.copy constructor

ConnectionSettings.copy(
  1. ConnectionSettings o
)

Implementation

ConnectionSettings.copy(ConnectionSettings o)
    : host = o.host,
      port = o.port,
      user = o.user,
      password = o.password,
      db = o.db,
      useCompression = o.useCompression,
      useSSL = o.useSSL,
      maxPacketSize = o.maxPacketSize,
      timeout = o.timeout,
      characterSet = o.characterSet;