Exemple #1
0
 private MysqlConnection buildMysqlConnection(AuthenticationInfo runningInfo) {
   MysqlConnection connection =
       new MysqlConnection(
           runningInfo.getAddress(),
           runningInfo.getUsername(),
           runningInfo.getPassword(),
           connectionCharsetNumber,
           runningInfo.getDefaultDatabaseName());
   connection.getConnector().setReceiveBufferSize(receiveBufferSize);
   connection.getConnector().setSendBufferSize(sendBufferSize);
   connection.getConnector().setSoTimeout(defaultConnectionTimeoutInSeconds * 1000);
   connection.setCharset(connectionCharset);
   connection.setSlaveId(this.slaveId);
   return connection;
 }